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