x="";
x=x+x;
y="  ";
i=0;

/***********************************************
* Local Time script- © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

var weekdaystxt=["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"]

function showLocalTime(container, servermode, offsetMinutes, displayversion){
if (!document.getElementById || !document.getElementById(container)) return
this.container=document.getElementById(container)
this.displayversion=displayversion
var servertimestring=(servermode=="http://localhost")? '<? print date("F d, Y H:i:s", time())?>' : (servermode=="server-ssi")? '<!--#config timefmt="%B %d, %Y %H:%M:%S"--><!--#echo var="DATE_LOCAL" -->' : '<%= Now() %>'
this.localtime=this.serverdate=new Date(servertimestring)
this.localtime.setTime(this.serverdate.getTime()+offsetMinutes*60*1000) //add user offset to server time
this.updateTime()
this.updateContainer()
}

showLocalTime.prototype.updateTime=function(){
var thisobj=this
this.localtime.setSeconds(this.localtime.getSeconds()+1)
setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second
}

showLocalTime.prototype.updateContainer=function(){
var thisobj=this
if (this.displayversion=="long")
this.container.innerHTML=this.localtime.toLocaleString()
else{
var hour=this.localtime.getHours()
var minutes=this.localtime.getMinutes()
var seconds=this.localtime.getSeconds()
var ampm=(hour>=12)? "PM" : "AM"
var dayofweek=weekdaystxt[this.localtime.getDay()]
this.container.innerHTML=formatField(hour, 1)+":"+formatField(minutes)+":"+formatField(seconds)+" "+ampm+" ("+dayofweek+")"
}
setTimeout(function(){thisobj.updateContainer()}, 1000) //update container every second
}

function formatField(num, isHour){
if (typeof isHour!="undefined"){ //if this is the hour field
var hour=(num>12)? num-12 : num
return (hour==0)? 12 : hour
}
return (num<=9)? "0"+num : num//if this is minute or sec field
}


function scroll(){
    window.defaultStatus=x.substring(i,x.length)+x;
    i++;
    if (i==x.length) i=0;
    tid=setTimeout("scroll()",100)
}
function stopScroll(){
    window.defaultStatus=" ";
    window.clearTimeout(tid);
}
function fullScreen(theURL) {
        window.open(theURL,'small','fullscreen=no,scrollbars=no,width=180,height=180');
}
function scrollScreen(theURL) {
        window.open(theURL,'small','fullscreen=no,scrollbars=yes,width=360,height=420');
}
function submit(){
        document.forms[0].submit();
}
function getlist(frm,vname){
        var len = frm.elements.length; lst = "";
        for(var i=0;i<len;i++){
                if (frm.elements[i].name==vname && frm.elements[i].checked)
                lst += frm.elements[i].value + ",";
        }
        return (lst.length>0)?lst.substr(0,lst.length-1):"";
}
