toUTCString()

function check()
{
var d=new Date();       Wed Sep 4 13:15:03 UTC +0200 2013
alert(d);
var n=d.toUTCString();       Wed, 4 Sep 2013 11:15:03 UTC
alert(n);
}