var lhs = "suzyshacklechick";
var rhs = "aol.com";

function print_mail()
{
   document.write(lhs + "@");
   document.write(rhs);
}

