function openwin(id) {
	var wf = "";
	wf = wf + "width=" + "500";
	wf = wf + ",height=" + "500";
	wf = wf + ",resizable=" + "no";
	wf = wf + ",scrollbars=" + "yes";
	wf = wf + ",menubar=" + "yes";
	wf = wf + ",toolbar=" + "no";
	wf = wf + ",directories=" + "no";
	wf = wf + ",location=" + "no";
	wf = wf + ",status=" + "no";
 	another=open(id,'_blank',wf);
}

function opensize(id,largeur,hauteur,defil,redim) {
	var wf = "";
	wf = wf + "width=" + largeur;
	wf = wf + ",height=" + hauteur;
	wf = wf + ",resizable=" + (redim ? "yes" : "no");
	wf = wf + ",scrollbars=" + (defil ? "yes" : "no");
	wf = wf + ",menubar=" + "yes";
	wf = wf + ",toolbar=" + "no";
	wf = wf + ",directories=" + "no";
	wf = wf + ",location=" + "no";
	wf = wf + ",status=" + "no";
 	another=open(id,'_blank',wf);
} 
