function NewWindow(url,title,w,h,scroll){
	var newWin;
	var winl = (screen.width-w)-10;
	var wint = (screen.height-h)-55;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,location=no,status=no,menubar=no,resizable=yes,dependent=yes'
	newWin = window.open(url,title,settings)
	if(parseInt(navigator.appVersion) >= 4){newWin.window.focus();}
	return (newWin);
}

function OpenHelpWindow(url) {
	NewWindow(url,'help','720','340','yes');
}

function OpenHubWindow() {
	var hubWindow = NewWindow('','hub','850','340','yes');
	var loc = hubWindow.document.location.toString();
	//inspect(hubWindow.document.location);
	//hubWindow.closed
	
	if (loc.indexOf(DOMAIN_NAME+'essai/fabrication_recherche.asp?menu=0')<0) {
		hubWindow.document.location = DOMAIN_NAME+'essai/fabrication_recherche.asp?menu=0';
		//hubWindow = NewWindow(DOMAIN_NAME+'essai/fabrication_recherche.asp?menu=0','hub','850','340','yes')
	}
	
}
