// JavaScript Document

// opens a pop up for the dispos
function popupDispo (url,title) {
      show = window.open(url,title,"resizable=yes,width=300,height=640,left=100,top=100,dependent=no,scrollbars=yes");
}

// opens a pop up for the dispos
function popupYahoo () {
		url = "http://www.yahoo.com";
		title = "yahoo";
      show = window.open(url,title,"resizable=yes,width=598,height=640,left=100,top=100,dependent=no,scrollbars=yes");
}

// popup For the printable product description.
function popupPrint(prefix,id) {
    popup = window.open(prefix+id,
                        "print",
                        "resizable=yes,width=825,height=640,left=100,top=100,dependent=no,scrollbars=yes");

}
// popup For the fiches
function popupFiche(prefix,id) {
    popup = window.open(prefix+id,
                        "print",
                        "resizable=yes,width=660,height=640,left=100,top=100,dependent=no,scrollbars=yes");

}

// general popup function
function popupSized(prefix,id,width,height,wind) {
    popup = window.open(prefix+id,
                        wind,
                        "resizable=yes,width="+width+",height="+height+",left=100,top=100,dependent=no,scrollbars=yes");
}


 function PopupLargeImage(img) {
	w=open("",'image','width=400,height=400,toolbar=no,scrollbars=yes,resizable=yes');
	w.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><title>Fnac.com - Voyages</title></head>");
	w.document.write("<script language=javascript type=\"text/javascript\">function checksize() { if (document.images[0].complete) {  var imgX=document.images[0].width+30; var imgY=document.images[0].height+30; if(imgX>screen.width)imgX=screen.width-30;if(imgY>screen.height)imgY=screen.height-30; window.resizeTo(imgX,imgY); window.focus();} else { setTimeout('check()',250) } }</"+"script>");
	w.document.write("<body onload='checksize()' bgcolor='#000000' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><img src='"+img+"' border=0/>");
	w.document.write("");
	w.document.write("</body></html>");
	w.document.close();
}