	
<!-- // FUNCTION: PS POPUP		
   function psWindow(url) {
   	var w=708;
   	var h=553;
	self.name = "main"; // names current window as "main"
	OpenWindow = window.open(url,"remote","width="+w+",height="+h+",scrollbars=yes,resizable=yes,top="+Math.floor(screen.height/2-h/2)+",left="+Math.floor(screen.width/2-w/2)); // opens remote control
	if(!OpenWindow){
		alert("Please disable your popup blocker.");	
	}else{
		OpenWindow.focus();
	}
}
//-->

<!-- // FUNCTION: POPUP Text
function toggleDisplay(id, id2) {
   var styleObj = document.getElementById(id).style;	
   var showLayer = (styleObj.display=='none' || styleObj.display=='') ? true : false;		
   var styleIndObj = document.getElementById(id2);
   styleObj.display = (showLayer) ? 'inline' : 'none';
   styleIndObj.src = (showLayer) ? '../images/bullet_large-minus.gif' : '../images/bullet_large-plus.gif';   	
}

//-->

