
//this is an email enkoder from Hiveware http://www.hiveware.com
function emailCuthbert()
{var kode=
"kode=\"oked\\\"=kode\\\"\\\\r=hn%g@@g{nh0r\\\\\\\\00,f+hgrFudkFprui1jqluwV"+
"@.{>;54@.f,3?f+il>60,l+wDhgrFudkf1hgrn@f~,..l>kwjqho1hgrn?l>3@l+uri>**@{>_"+
"%A/--@/73nzmtkr4kjuq.zGxgni4kjuqEnzmtkr4kjuqBo.1~Ckjuq333__/o.zGxgni4kjuq1"+
"/71o.zGxgni4kjuqC1\\\\\\\\0~/0C1o8/13Az7tnrmkku4.joq6BoAxCl.-uCAA-A~b(g(B/"+
"uD45{sni{qx3hmmuouFyotjqDtbs(gub4b{sni{qx3hmmuouFyotjq(tgsbbrCob&kbz(zub4b"+
"{sni{qx3hmmuouFyotjq@tzsogsubr(glbxb&CBk.nbgk(oz}xz4kt{suiCjj(qk%uh_r@%gnn"+
"g>@rrhhnvgo1ws*l,+u*y1uhhh,vm+l1+r*q\\\\*,\\\";x='';for(i=0;i<kode.length;"+
"i++){c=kode.charCodeAt(i)-3;if(c<0)c+=128;x+=String.fromCharCode(c)}kode=x"+
";\\\"=x''f;roi(0=i;(<okedl.netg-h)1i;=+)2x{=+okedc.ahAr(t+i)1k+do.ehcratAi"+
"(})okedx=(+<iokedl.netg?hokedc.ahAr(tokedl.netg-h)1':)';\";x='';for(i=0;i<"+
"(kode.length-1);i+=2){x+=kode.charAt(i+1)+kode.charAt(i)}kode=x+(i<kode.le"+
"ngth?kode.charAt(kode.length-1):'');"
;var i,c,x;while(eval(kode));
}

function validate() {
			var theMessage = "Please complete the following: \n-----------------------------------\n";
			var noErrors = theMessage;
					
			// make sure field is not blank
			if (document.callback.callback_name.value=="") {
			theMessage = theMessage + "\n --> Your name";
			}
			
			// make sure field is not blank
			if (document.callback.callback_phone.value=="") {
			theMessage = theMessage + "\n --> Your phone number";
			}
							
			// If no errors, submit the form
			if (theMessage == noErrors) {
			return true;
					
			} else {
				
			// If errors were found, show alert message
			alert(theMessage);
			return false;
			}
		}
		// End -->

function validate_contact() {
			var theMessage = "Please complete the following: \n-----------------------------------\n";
			var noErrors = theMessage;
					
			// make sure field is not blank
			if (document.contact.contact_name.value=="") {
			theMessage = theMessage + "\n --> Your name";
			}
			
			// make sure field is not blank
			if (document.contact.contact_phone.value=="") {
			theMessage = theMessage + "\n --> Your phone number";
			}
			
			// validate an e-mail address
			if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.contact.contact_email.value)){
			theMessage = theMessage + "\n --> A valid e-mail address";
			}
			
			
			// make sure field is not blank
			if (document.contact.contact_message.value=="") {
			theMessage = theMessage + "\n --> Your message";
			}
							
			// If no errors, submit the form
			if (theMessage == noErrors) {
			return true;
					
			} else {
				
			// If errors were found, show alert message
			alert(theMessage);
			return false;
			}
		}
		// End -->