function get_email_sortiejeu(jeu,platform,ref,source)
{
var txt= "";
txt += '<center><table><tr><td><font size="2" face="Arial">Prévenez moi par E-mail de la sortie de '+jeu+' sur '+platform+'</FONT></td></tr></table></center>';
txt += '<form action="/sorties/prevenir.php" method="POST">';
txt += '<input type="hidden" name="titre" value="'+jeu+'">';
txt += '<input type="hidden" name="machine" value="'+platform+'">';
txt += '<input type="hidden" name="ref" value="'+ref+'">';
txt += '<input type="hidden" name="source" value="'+source+'">';
txt += '    <div align="center"><center><table border="0">';
txt += '	<tr>';
txt += '		<td width="100"><font size="2" face="Arial">Adresse E-mail: </font></td>';
txt += '		<td><font size="2" face="Arial"><input type="text" size="30" name="email"></font></td>';
txt += '	</tr>';
txt += '	<tr>	<td colspan=2><input type=checkbox name=enews value=1> <font size="2" face="Arial">Cochez cette case pour inscrire cette adresse aux E-news Micromania</font>';
txt += '	<tr>';
txt += '		<td align="center" colspan="2"><font size="2" face="Arial"><br><input type="submit" name="B1" value="Envoyer"></font></td>';
txt += '	</tr>';
txt += '	<tr>';
txt += '	<td align=center colspan=2>';
txt += '	<script language="javascript">';
txt += '	function cnil()';
txt += '	{';
txt += '		console = window.open( "/contact/cnil.html", "cnil", "width=350,height=280,resizable=no");';
txt += '	}';
txt += '	</script>';
txt += '	<br>';
txt += '	<a href="javascript:cnil();"><font size=1 face=Arial>Informatique et Libertés</font></a>';
txt += '	</td>';
txt += '	</tr>';
txt += '    </table>';
txt += '    </center></div>';
txt += '</form>';

console = window.open("","console","width=400,height=200,resizable=yes");
console.document.open("text/html");
console.document.write(txt);
console.document.close();
}

