function openwin(url, w, h, scroll)
{
	myWindow = window.open(url, "Now", "width="+w+",height="+h+",scrollbars="+scroll+",resizable=yes,left=0,top=0");
}
function winclose()
{
	window.close();
}

var remote = null;
function RemoteWindow(URL,Width,Height,Scroll,Status) {
	if(remote != null) remote.close();	
	remote =  window.open(URL,'BRIZ','width='+Width+',height='+Height+',top=0,left=0,scrollbars='+Scroll+',resizable=0,status=no');
	remote.focus();
	return;
}


//FAQ
var old='';
function cmenu(name){
		
	submenu=eval("detail_"+name+".style");

	if(old!=submenu)
	{
		if(old!='')
		{
			old.display='none';
		}
		submenu.display='block';
		old=submenu;
	}
	else
	{
		submenu.display='none';
		old='';
	}
}