<!--

function isemail() {
if (subscribeform.email.value == "") {
alert ("\n The E-Mail field is blank. \n\n Please enter the  E-Mail address.")
subscribeform.email.focus();
return false;
}
if (subscribeform.email.value.indexOf ('@',0) == -1 ||
subscribeform.email.value.indexOf ('.',0) == -1) {
alert ("\n The E-Mail field requires a \"@\" and a \".\" be used. \n\nPlease re-enter your E-Mail address.")
subscribeform.email.select();
subscribeform.email.focus();
return false;
}
return true;
}

function submitform1(frm){
//var radioselected=false;
//if (frm.radiobutton1.checked){
if (isemail()){
frm.name = "subscribeform";
//frm.action = "http://www.tourandstudy.com/maillist2/?p=subscribe";
frm.action = "maillist2/?p=subscribe";
//frm.action = "";
//frm.Submit.name = "subscribe";
//document.subscribeform.elements['Submit'].name = "subscribe";
frm.submit();
//alert(frm.radiobutton1.value);
//}else{
//frm.action = "http://www.tourandstudy.com/maillist2/?p=unsubscribe";
//frm.Submit.name = "unsubscribe";
//frm.submit();
//alert(frm.radiobutton2.value);
//			} 
}  
}

//-->
