var timerID ;
function ClockString()
{
time= new Date();
document.write ('<div ID=time bgcolor="#FFFFFF" style="HEIGHT: 40px; LEFT: 0px; POSITION: absolute; TOP: 50px; WIDTH: 220px; Z-INDEX: 1000 ">');
document.write('<table border=1 bordercolor=#000000 cellspacing=0 cellpadding=2> <tr> <td bgcolor="#FFFFFF"> <font face=verdana,arial,helvetica color=#000000 size=2><b>Spanish Time:  ');
var temptime;
temptime = time.getUTCHours()+1;
if (temptime > 24) temptime = temptime - 24;
document.write (temptime);

min = time.getUTCMinutes();
if ( min < 10)	min = '0' + min ;
sec = time.getUTCSeconds();

if (sec < 10) sec = '0' + sec ;

document.write (":"+min+" ");
document.write ("</font></b></td></tr></table></div>");


}
ClockString();

