<!--


// sniff for browsers
hasDOM = (document.getElementById)?true:false
isNS = (navigator.appName=='Netscape')?true:false
isNS4 = (document.layers)?true:false
isNS6 = isNS && hasDOM
isIE45 = (document.all)?true:false
isIE5 = isIE45 && hasDOM
isMac = (navigator.userAgent.indexOf('Mac') >0)?true:false;

var bgstore = "";
on = 0



function highForm (element,col){

if (!isNS6 && !isIE45) return false


	if(on==0){bgstore=element.style.backgroundColor;element.style.backgroundColor=col;on=1}
	else	 {element.style.backgroundColor = bgstore;on=0}

}


function newWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);

}



//-->


