// copy starts here, marco
function openEmail(here){
 //window.open("",'email','width=580,height=600,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes');

msg=window.open("","msg","height=300,width=310,left=80,top=80");
msg.document.write("<html>");

msg.document.write("<link rel='stylesheet' type='text/css' href='../2_css/general.css'>");

msg.document.write("<body bgcolor='ff5704' onblur=window.close() background='../1_images/email_bg.gif'>");
msg.document.write("<div style='position:absolute;top:45px;left:45px;width:250px; height:250px;'>");
msg.document.write("<form enctype='multipart/form-data' action='http://www.e-flux.com/projects/doit/forward.phtml' method='post'>");
	
	msg.document.write("<span class='standard9' style='color:white; letter-spacing:1px;'>from_ YOUR NAME :</span><br>              "); 
	msg.document.write("<input type='text' name=name style='background-color:#F6F4E9; border:1px solid #7B0000; height:21px;width:220px;'><br>");
		
	msg.document.write("<span class='standard9' style='color:white; letter-spacing:1px;'>to_ DESTINATION E-MAIL ADDRESS :</span><br>        ");       
	msg.document.write("<input type='text' name=email style='background-color:#F6F4E9; border:1px solid #7B0000; height:21px;width:220px;'><br> ");
		
	msg.document.write("<span class='standard9' style='color:white; letter-spacing:1px;'>YOUR MESSAGE :</span><br> ");
msg.document.write("<table cellspacing='0' cellpadding='0'> ");
	msg.document.write("<tr>	    ");
	msg.document.write("<td>	    ");
	msg.document.write("<textarea Name=message style='background-color:#ffffff; border:1px solid #7B0000; width:220px; height:100px;'>");
	msg.document.write("</textarea>	    ");
	msg.document.write("</td> 	");
	msg.document.write("</tr>	 ");
	msg.document.write("<tr><td align='right' height='30'>");
	msg.document.write("<input type='reset' value='CLEAR' class='standard10' style='color:#7B0000; background-color:#FFE4AA; border:1px solid #7B0000; width:55px; height:21px; font-family:verdana; font-size:9px;line-height:20px;'> 		");
	msg.document.write("<input type=hidden name=project value="+ here +">");
	msg.document.write("<input type='submit' value='SEND' class='standard10' style='color:#7B0000;background-color:#ffffff; border:1px solid #7B0000; width:55px; height:21px; font-family:verdana; font-size:9px;line-height:20px;'>");
	msg.document.write("</td>");
	msg.document.write("</tr> ");
msg.document.write("</table> ");

msg.document.write("</form> ");
msg.document.write("</div>");
msg.document.write("</body>");
msg.document.write("</html>");

}
// copy ends here, marco
