// -----------------------------------------------------------------------------------
//
//	popup v1.0.0
//	by Sébastien Jourdan
//	04/06/2008
// -----------------------------------------------------------------------------------
	
	function popup(image_loc, hauteur, largeur)
	{
		var width, heigth;
		width = 2*largeur + 20;
		height = 2*hauteur + 30;
		str_style= "\' width="+width+",height="+height+"\'";
 		window.open(image_loc,"myImage",str_style);
	};

	function popupvr(URL)
	{
		window.open(URL,"Ferrures","toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=No,resizable=Yes,copyhistory=1,width=360,height=280");
	};
