
// functions
function gopmb(e) {
var mv="";var bs="";var pv=""; var pref="20.31.29.37.3.10."; 
var cy="x1st2-n74gopr.uyqz93m0vwk_56hijabcdefl8@"; var eList = new Array();
// list
eList[0]='29.6.36.10.39.11.20.32.3.31.0.31.3.29.10.6.13.33.10.13.14.24.'; // info
//
var adr=eList[e];
for(i=0;i<pref.length;i++){k=pref.charAt(i);if(k!="."){bs+=k} else if(k==".") {pv+=cy.charAt(bs);bs="";}}
for(i=0;i<adr.length;i++){k=adr.charAt(i);if(k!="."){bs+=k} else if(k==".") {mv+=cy.charAt(bs);bs= "";}}
eadr = pv+":"+mv;
window.location.href= eadr;
}
//
function checkForm() {
formErrors = "";
 // required fields
thisName =  document.cform.name.value; 
thisCom =  document.cform.company.value; 
thisTel = document.cform.telephone.value; 
thisEmail = document.cform.email.value; 
thisAddr = document.cform.address.value; 
thisMsg = document.cform.message.value;
thisRef = document.cform.referredby.value;
 if (thisName=="") {  formErrors+="Please enter your name\n"; }
 if (thisTel=="") {
	 formErrors+="Please Enter a contact telephone \n"; }
 if (thisEmail!="" && (thisEmail.indexOf('@')==-1|| thisEmail.indexOf('.')==-1 )) {
 formErrors+="Please enter a valid email address\n"; }
 if (thisMsg=="") { formErrors+="Please enter a message\n"; }
 //
 if (formErrors=="") {
document.cform.combo.value = "\n" + 
"Name:  " + thisName +"\n\n" +
"Company:  " + thisCom +"\n\n" +
"Telephone:   " + thisTel  + "\n\n" +
"Address:   " + thisAddr  + "\n\n" +
"Message:   "+ thisMsg  + "\n\n" +
"Referred By:   "+ thisRef  + "\n\n";

return true;

} else {
formErrors= "There are errors on your form:\n\n" + formErrors;
alert(formErrors);
 return false;
}
// end function
}
