

// popups (aide)
var fpopup;
function popup(url, titre, top, left, largeur, hauteur) {
	url = "../modeles/" + url;

//	if(navigator.appName == "Netscape") {hauteur=hauteur+50;}

  var strarg = "dependent=1";
	strarg += ",height="+hauteur+",width="+largeur;
	strarg += ",top="+top+",left="+left;
	strarg += ",toolbar=0,location=0,directories=0,menuBar=0,resizable=1,copyhistory=0,scrollbars=1"

	fpopup =  window.open(url,titre,strarg);
//  fpopup.focus();
//  fpopup.resizeTo(largeur,hauteur);
//  fpopup.document.close();
//	if(navigator.appName == "Netscape") {parent.focus();}
//  return false;
}

// Nouvelles fenetres
var fnew_window;
function new_window(url, titre, top, left, largeur, hauteur) {
	url = "../modeles/" + url;

//	if(navigator.appName == "Netscape") {hauteur=hauteur+50;}

  var strarg = "dependent=1";
	strarg += ",height="+hauteur+",width="+largeur;
	strarg += ",top="+top+",left="+left;
	strarg += ",toolbar=1,location=1,directories=1,menuBar=1,resizable=1,copyhistory=0,scrollbars=1"

	fnew_window =  window.open(url,titre,strarg);
//  fnew_window.focus();
//  fnew_window.resizeTo(largeur,hauteur);
//  fnew_window.document.close();
//	if(navigator.appName == "Netscape") {parent.focus();}
//  return false;
}

