/*Module de gestion des fenêtres - window.js
  Projet: Productions Coup D'Choeur
  Auteur: Maxime Dumas
  Dernière modification: 3 septembre 2007*/

function popup(page, width, height, scrolls, tools){
	details = "width=" + width + ",height=" + height + ", top=150, left=150 ";
	
	if (!scrolls)
		details += ",scrolling=no,scrollbars=no";
	else
		details += ",scrolling=yes,scrollbars=yes";
	
	if (!tools)
		details += ",resizable=no";
	else
		details += ",resizable=yes";
	
	fenetre =  window.open(page, "", details);
}
