// errors
function errors(){return true}window.onerror=errors;
// clock
function b(){var a=new Date();var hours=a.getHours();h=(hours<10)?"0"+hours:hours;var minutes=a.getMinutes();m=(minutes<10)?"0"+minutes:minutes;var seconds=a.getSeconds();s=(seconds<10)?"0"+seconds:seconds;document.getElementById('clock').innerHTML=h+":"+m+":"+s}window.setInterval('b()',1000);
// bookmark
function bookmark(url,title){if(document.all){window.external.AddFavorite(url,title)}else if(window.sidebar){window.sidebar.addPanel(title,url,"")}}
// startpage
function startpage(url,comp){if(document.all){comp.style.behavior='url(#default#homepage)';comp.setHomePage('http://www.elahmad.com')}else if(window.sidebar){alert("Go to Tools> Options.\n Select the General tab.\n Select My Home Show at the option if Firefox starts.\n Fill in at Home: http://www.elahmad.com\n Click OK. SeniorWeb is now your homepage.\!")}}
//Popup Window 
var win=null;function NewWindow(mypage,myname,w,h,scroll,pos){if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100}if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100}else if((pos!="center"&&pos!="random")||pos==null){LeftPosition=0;TopPosition=20}settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';win=window.open(mypage,myname,settings)}
