//-------------------------------------------------
// Category Select popup menu added by Max
// Last Update 3 May 2008
//-------------------------------------------------
function list(act,total){ 

	var nAct = "mnu";
	
	for (var i = 1 ; i <= total  ; i++ )
	{ 
		document.getElementById(nAct+i).style.display="none";	
	} 
	n_act = nAct+act ;
	document.getElementById(n_act).style.display=(document.getElementById(n_act).style.display=="")?"none":""; 
}
 

function popupUrl(url,urlname)
{ 
	//win = window.open(url,'urlname',"height=550,width=450,status=0,menubar=0,scrollbars=1,toolbar=0,location=0,resizeable=0,left=50,top=100") ; 
	win = window.open(url,urlname,"height=550,width=450,status=0,menubar=0,scrollbars=1,toolbar=0,location=0,resizeable=0,left=50,top=100") ; 
}