function MakeForm(BibRef,Receiver)
{
var HTML = 
'<html>'+
'<head><title>Reprint Request Form</title></head>'+

'<body>'+

'You have asked for a reprint of: '+
'<span style="color:red">'+BibRef+'</span>'+
'.<br>'+
'It will be sent to you by email.<br>'+

'<form method=post action="http://algo.inria.fr/bin/FormMail.pl">'+
'<input type=hidden name=recipient value='+Receiver+'>'+
'<input type=hidden name="title" value="'+BibRef+' Reprint">'+
'<input type=hidden name=subject value='+BibRef+'>'+
'Please enter your email address: '+
'<input type=text size=20 name=email>'+
'<br>'+
'Comments (optional): '+
'<br>'+
'<textarea rows=3 cols=42 name=comment></textarea>'+
'<br>'+
'(For instance, you can use this field if you want reprints of several articles.)'+
'<br>'+
'<center><input type=submit value=Submit></center>'+
'</form>'+
'</body>';

var FormWin = window.open("", "Window_Name", "width=400px,height=300px");
FormWin.document.write(HTML);
FormWin.focus();
FormWin.document.close();
}


