// POPUP ///////////////////////////////////////////////////////////////////////

/* 1/03/2006
 -------------------------------------------------------------------------------
 popupShow :
 . id       -> id produit
 . contexte -> POP_ZOOM / POP_GALERIE
 . value    -> titre de la fenêtre / image à afficher
 . width    -> largeur de l'image
 . height   -> hauteur de l'image
 Signature : affichage popup
-------------------------------------------------------------------------------
*/
function popupShow(id, contexte, value, width, height) {

	if ( width == 0 ) width = 470;
	else width = width + 25;
	if ( height == 0 ) height = 410;
	else height = height + 55;
	
	if ( contexte == 2) {
		// Contexte POP_GALERIE
		x = (screen.width/2) - (width/2);
		y = 0;
	}
	else {
		// Contexte POP_ZOOM
		x = (screen.width/2) - (width/2);
		y = 0;
	}
	
	param1 = "popup.php?id="+id+"&pop="+contexte+"&value="+value;
	param2 = "thePopup";
	param3 = 'left='+x+', screenX='+x+', top='+y+', screenY='+y+', resizable=1, location=0, status=0, width='+width+', height='+height+', scrollbars=1';
	thePopup = window.open(param1, param2, param3);
	
	thePopup.moveTo(x, y);
	window.thePopup.focus();

} // popupShow()

/* 14/06/2006 zoneProtégée
 -------------------------------------------------------------------------------
 popupZoom :
 . src    -> image à afficher
 . width  -> largeur de l'image
 . height -> hauteur de l'image
 Signature : affichage popup
-------------------------------------------------------------------------------
*/
function popupZoom(pop, src, titre, width, height) {

	if ( width == 0 ) width = 470;
	else width = width + 25;
	if ( height == 0 ) height = 410;
	else height = height + 55;
	
		x = (screen.width/2) - (width/2);
		y = 0;
	
	param1 = "popup.php?pop="+pop+"&src="+src+"&titre="+titre;
	param2 = "thePopup";
	param3 = 'left='+x+', screenX='+x+', top='+y+', screenY='+y+', resizable=1, location=0, status=0, width='+width+', height='+height+', scrollbars=1';
	thePopup = window.open(param1, param2, param3);
	
	thePopup.moveTo(x, y);
	window.thePopup.focus();

} // popupZoom()
