function oPop(nomPop,width,height,nompage,scrollable,resizable){
	if(typeof(nomPop)=="undefined")nomPop="pop";
	if(typeof(width)=="undefined")width=800;
	if(typeof(height)=="undefined")height=600;
	if(typeof(scrollable)=="undefined")scrollable="no";
	if(typeof(nompage)=="undefined")nompage="about:blank";
	scrollable=(scrollable=="yes"?"yes":"no");
	if(typeof(resizable)=="undefined")resizable="no";
	resizable=(resizable=="yes"?"yes":"no");

	var top=(screen.height-height)/2;
	var left=(screen.width-width)/2;		

	var popup=window.open(nompage,nomPop,"menubar=no, status=no, scrollbars="+scrollable+", menubar=no, resizable="+resizable+", width="+width+", height="+height+", left="+left+", top="+top);
	popup.blur();popup.focus();
	
}
function openPay(){oPop("Pay",750,500,"popabo.php","no","no");}

var hovertype=null;
function menuvid(id,type){
	var div=document.getElementById("vid_"+id);
	var divd=document.getElementById("vidd_"+id);
	hovertype=document.getElementById("hover_"+id);
	if(type=="show"){
		div.style.display="block";
		div.style.visibility="visible";
		divd.style.top="-10px";
	}else{
		div.style.display="none";
		div.style.visibility="hidden";
		divd.style.top="10px";
	}
}
