/* ---
* POPUP
*/
function popup(theURL, w ,h) 
{
	if(!h) h = w;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winProps = 'height='+h+',width='+w+',top='+wint+',left='+winl+'resizable=0';
	winPop = window.open(theURL, "popup", winProps)
}

/* ---
* POPUP DIAPORAMA
*/
function popDiaporama(id) {
	return popup("index.php?controller=diaporama&id=" + id, 540 ,540) ;
}
