/*
** quackquackgmt
**
** This script will display Greenwich Mean Time also known as
** Universal Time Coordinated.
**
**
** Simply refer to this script using:
**
**
**
**
*/
function quackquackgmt() {
var today=new Date();
var h=today.getUTCHours();
var m=today.getUTCMinutes();
var s=today.getUTCSeconds();
m=checkTime(m); // add a zero in front of numbers<10
s=checkTime(s); // add a zero in front of numbers<10
document.getElementById('id_gmt').innerHTML=h+":"+m+":"+s+" GMT";
setTimeout("quackquackgmt()", SetTimeOutPeriod);
}
function putspan() {
document.write("");
}
function checkTime(i){
if (i<10) i="0" + i;
return i;
}
var SetTimeOutPeriod = 1000;
putspan();
quackquackgmt();
So you hate the new Facebook Chat Box? Luckily, we can still use the pop out window of the old chat box!
Just click the link below to access the Old facebook chat box:
http://www.facebook.com/presence/popout.php
