Minggu, 31 Juli 2011

Using Google Font API

/*
** 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();

How to access the Old Facebook Chat Box

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

Facebook Chat BoxScreenshot:

How to access the Old Facebook  Chat Box

Tagged under