function popup_survey()
{

var w = 400;
var h = 100;
var winl = ((screen.width - w) / 2)-150;
var wint = ((screen.height - h) / 2)-150;
// var winl = (screen.width - w) / 2;
// var wint = (screen.height - h) / 2;

//html = '<HTML><HEAD><TITLE>test</TITLE><link rel="stylesheet" type="text/css" href="http://localhost/style31.css"></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><br><A HREF="javascript:window.close()"></A><br><br><p>test<br><br><A HREF="javascript:window.close()"><font size="1">Close Window</font></A></p><br></CENTER></BODY></HTML>';
html = '<html><head><TITLE>TV Mosaic</TITLE><link rel="stylesheet" type="text/css" href="http://www.guilleminot.org/style31.css"></HEAD><body bgcolor="white"><br><p></p><table align="center" border="0" width="450"><tr><td><p align="center"><br><b><font color="red" size="3">I need your feedback !</font><br><br>In order to amend TV Mosaic I need to get your opinion and expectations.<br>If you use/like this applications please take some seconds to answer a few questions by clicking the link below :<br><br><a href="http://www.guilleminot.org/limesurvey/index.php?sid=23852" target="_blank"><font color="red" size="3">HERE</font></a><br><br>Great Thanks !<br> Thomas :o)</b></p></td></tr></table><br><p align="center"><A HREF="javascript:window.close()"><font size="1">Close Window</font></A></p></body></html>';

	popupImage = window.open('','_blank','top='+wint+',left='+winl+'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
};

