
function openContactForm(sujet, absolutePath){

	if(absolutePath == null) 
		var absolutePath = "http://wwww.scienceenjeu.ca/forestia";
	var heightWindow = 365 + 83;
    var width = 488;
    var height = heightWindow;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height +
        ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=" + left + ",top=" + top +
        ",screenX=" + left + ",screenY=" + top;
    mywin = window.open('', "Contact", windowFeatures);
	mywin.focus();
	mywin.document.write('<html>');
	mywin.document.write('<head>');
	mywin.document.write('<title>Science en jeu - Formulaire de contact</title>');
	mywin.document.write('</head>');
	mywin.document.write('<body style="margin: 0; padding: 0;background-color: #000000;background-image:url('+absolutePath+'images/header_game.jpg);background-repeat:no-repeat;">')
	mywin.document.write('<div style="margin-top:0px;width:100%;height:83px;">');
	mywin.document.write('<a href="http://www.creo.ca" target="_blank"  title="Visitez le site de Creo inc, la science en jeu" alt="Visitez le site de Creo inc, la science en jeu" onClick=javascript:pageTracker._trackPageview("hits/creo") ><img src="'+absolutePath+'images/pixel.gif" width="104" height="82" border="0" style="float:left;margin-top:5px;margin-left:0px;"/></a>');	
	mywin.document.write('</div>');
	mywin.document.write('<iframe id="iframegame" src="http://www.scienceenjeu.ca/forestia/contact.php?sujet='+sujet+'" width='+width+' height='+height+' scrolling=no frameborder=0></iframe>');
	mywin.document.write('</body>');
	mywin.document.write('</html>');
	
}
