// Pour afficher une fenêtre à la taille désirée et avec l'URL souhaitée

function MakeWindow(loc, pwidth, pheight, wintitle) {
	args = MakeWindow.arguments;
	if (args.length < 5) {
		var scroll = "no";
	} else {
		var scroll = args[4];
	}
	var myURL = loc;
	var myWindow = wintitle;
	var propertyWindow = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scroll + ",resizable=no,width=" + pwidth + ",height=" + pheight;
	var newWindow = window.open(myURL,myWindow,propertyWindow);
}

function rien() {return}
