if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

//Rollover Script
if (document.images){
pPath='/images/buttons/';
}
 
function hiRoll(pImgId,pState){

if ((document.images) && (pState==1)){
    document[pImgId].src=pPath + pImgId + '_on.jpg';
    pState=0;
	
}else if ((document.images) && (pState==0)){
    document[pImgId].src=pPath + pImgId + '_off.jpg';
    pState=1;
		
}
}

//Launch Window
	function launchWindow(pURL,pWinName,pPositioningState,pWidth,pHeight,xPos,yPos){
	if(pPositioningState == 1){
	xPos=eval(screen.width/2 - (pWidth/2))  
	yPos=eval(screen.height/2 - (pHeight/2))
	}
	else{
	xPos=10;
	yPos=10;
	}
	myWinName=window.open(pURL,pWinName,"toolbar=0,location=0,directories=0,scrollbars=0,width=" + pWidth +',height=' + pHeight + ',left=' + xPos + ',top=' + yPos)
	
}



