<%
var email = Request.QueryString("email")+"";
var emailSubject = Request.QueryString("email_subject")+"";
var emailBody = Request.QueryString("email_body")+"";
if (email == "" || emailSubject == "" || emailBody == "") {
Response.Write(" There were problems with the information you entered as indicated below: ");
}
function define (k) {
if (k == "undefined") {
Response.Write("");
}
else {
Response.Write(k);
}
}
function errorMsg(i) {
if (i == "" ) {
Response.Write("* | ");
}
else {
Response.Write("* | ");
}
}
%>
|