// Sets the email address of the send_to field for the cgi
// Hides addy from email harvesters

var lhs = "porch4u"; 
var rhs = "yahoo.com";

function print_mail_to_link()
{
document.write("<input type='hidden' name='send_to' value='");
document.write(lhs + "@");
document.write(rhs + "'>");
}


