var remote = null;
function RemoteWindow(URL,Width,Height,Scroll,Status) {
	if(remote != null) remote.close();	
	remote =  window.open(URL,'BRIZ','width='+Width+',height='+Height+',scrollbars='+Scroll+',resizable=0,status=no');
	remote.focus();
	return;
}