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;
}
