// CHL Web Site - Common Functions
 
function openWindow(pname) {
    window.open(pname,"ts2000Win","width=790,height=600,status=no,scrollbars=yes,resizable=yes,toolbar=no,location=no,left=10,top=10")
}
function popup_window( url, id, width, height )
    {
       //extract the url parameters if any, and pass them to the called html
       var tempvar=document.location.toString(); // fetch the URL string
       var passedparams = tempvar.lastIndexOf("?");
       if(passedparams > -1)
          url += tempvar.substring(passedparams);
      popup = window.open( url, id, 'toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=' + width + ',height=' + height + '' );
      popup.focus();
    }

function bgroundOn(td)  {
	td.style.backgroundColor="EEEEEE"
}
function bgroundOff(td)  {
	td.style.backgroundColor=""
}



