// plandusite.js
// 02/02/2003
// Version 3.0
//

var thumbWin=null;
var thumbTimer=null;

function initThumbs()
{
	if (document.images)
	{
		img0      = new Image()
		img0.src  = "img/temp.jpg"
		img1      = new Image()
		img1.src  = "img/autour.jpg"
		img2      = new Image()
		img2.src  = "img/contacts.jpg"
		img3      = new Image()
		img3.src  = "img/theme.jpg"
		img4      = new Image()
		img4.src  = "img/scene.jpg"
		img5      = new Image()
		img5.src  = "img/roman.jpg"
		img6      = new Image()
		img6.src  = "img/realisation.jpg"
		img7      = new Image()
		img7.src  = "img/equipe.jpg"		
		img8      = new Image()
		img8.src  = "img/compagnie.jpg"		
		img9      = new Image()
		img9.src  = "img/suspects.jpg"
		img10     = new Image()
		img10.src = "img/lieu.jpg"
		img11     = new Image()
		img11.src = "img/boundsrooster.jpg"
		img12     = new Image()
		img12.src = "img/rabbit.jpg"
		img13     = new Image()
		img13.src = "img/pdf.jpg"
		img14     = new Image()
		img14.src = "img/taper.jpg"
		img15     = new Image()
		img15.src = "img/index.jpg"
		img16     = new Image()
		img16.src = "img/ecrire.jpg"
		img17     = new Image()
		img17.src = "img/reservations.jpg"
	}
	
	return true;
	
}

function thumb()
{
	thumbTimer=setTimeout("showThumb(\"temp.jpg\");", 100);
	return true;
}

function showThumb(imgname)
{
	var imgfpath;
	
//	return;
	if (imgname == "roman"         ||
		imgname == "autour"        || 
		imgname == "rabbit"        || 
		imgname == "pdf"           || 
		imgname == "contacts"      || 
		imgname == "theme"         ||
		imgname == "index"         ||
		imgname == "taper"         ||
		imgname == "realisation"   ||
		imgname == "ecrire"        ||
		imgname == "equipe"        ||
		imgname == "compagnie"     ||
		imgname == "suspects"      ||
		imgname == "lieu"          ||
		imgname == "boundsrooster" ||
		imgname == "reservations"  ||
	    imgname == "scene"   )
	{
		;
	}
	else
	{
		imgname = "temp";
	}

	imgfpath=imgname+".jpg";
	
//	openThumb(imgfpath);
//	hideThumb();

	thumbTimer=setTimeout("openThumb(\""+imgfpath+"\");", 100);
	return false;
}

function hideThumb()
{
	if (thumbTimer)
	{
		clearTimeout(thumbTimer);
	}
	
	if (thumbWin)
	{
		if (thumbWin.open)
		{
			thumbWin.close();
		}
	}
}

function openThumb(imgfname, img_wide, img_high)
{
		var xp=50;
		var yp=50;
		var scrnwide=350;
		var scrnhigh=500;
		var imgfpath="";
		var imgobject;
		var img_wide=383;
		var img_high=153;
		
		img_wide = 255;
		img_high = 150;

   		imgobject = new Image();
		imgfpath="img/"+imgfname;
		scrnwide = img_wide +  40;
		scrnhigh = img_high +  65;

		scrnwide = img_wide +  10;
		scrnhigh = img_high +  10;

		xp = 0;
		yp = 0;

		winStr = "window.open('','sitemap','toolbar=no,location=no,menubar=no,resizable=0,dependent=yes,status=no,scrollbars=no,alwaysRaised=yes,width=" + scrnwide + ",height=" + scrnhigh + ",left=" + xp + ",top=" + yp + "')";
		thumbWin = eval(winStr);
		thumbWin.document.open();
		thumbWin.document.writeln('<html><head><title>Les Rendez-vous d\'Eva : Plan du site</title><style type=\"text/css\">body {margin-top:5;margin-bottom:0;margin-left:0;margin-right:0;background:#000000;}</style></head>');
		thumbWin.document.writeln('<body onload=\"setTimeout(\'self.focus();\',1000);\"><center>');
//      thumbWin.document.writeln('<img src=\"img/netini.jpg\" width=\"385\" height=\"38\" border=\"0\"><br />');
		thumbWin.document.writeln('<table border=\"0\" cellpadding=0 cellspacing=0 background=\"'+imgfpath+'\">');
		thumbWin.document.writeln('<tr><td><img src=\"img/'+"clear.gif"+'\" width=\"'+img_wide+'\" height=\"'+img_high+'\" border=\"0\" /></td></tr></table>');
		thumbWin.document.writeln('</center></body></html>');
		thumbWin.document.close();
		thumbWin.focus();
		
		return true;
}


