
 function sendit() {
  newwin = window.open('','','top=150,left=150,width=320,height=200, resizable=yes');
  msg1="Please enter the destination email address:"; 
  msg2="Please enter your email address:"; 
  gridimage="http://www.canoe.ca/CanoeHomepageImages/grid.gif";
  canoenet="http://www.canoe.ca/CanoeGlobalnav/canoe_net05.gif";
  formact="http://cgi.canoe.ca/htbin/mailers/sendurl";
  url=location.href;
   if (!newwin.opener) newwin.opener = self;
   with (newwin.document)
   {
open();
write('<html><head><title>Send this story to a friend</title></head>');
write('<body text=white bgcolor="#cc3333" onLoad="document.form.receiver.focus()" topmargin=0 marginheight=0 leftmargin=0 marginwidth=0>');
write('<table width=100% cellpadding=1 cellspacing=0 border=0><tr bgcolor=black><td width=100% colspan=3><img src='../../Electric_Vehicles_Info/1456565_files/%2B%20canoenet%20%2B%20'></td></tr>');
write('<tr><td colspan=3 width=100% background='../../Electric_Vehicles_Info/1456565_files/%20%2B%20gridimage%20%2B%20'><br></td></tr>');
write('<tr><td width=10>  </td><td><font size=2><form name=form action='../../Electric_Vehicles_Info/1456565_files/%20%2B%20formact%20%2B%20'>' + msg1 + '<br>');
write('<b>TO: </b><input type=text name="receiver" size=30 maxlength=100>');
write('<br><br>'+ msg2 + '<br>');
write('<b>FROM: </b><input type=text name="sender" size=30 maxlength=100>');
write('<input type=hidden name="pageurl" value=' + url + '><br>');
write('<p><input type=submit value="submit">');
write('</form></font></td><td width=10>  </td></tr></table>');
write('</body>');
write('</html>');
close();

   }
  }
