	<!--Hide the Java

	function ExplorerFix() {
		for (a in document.links) document.links[a].onfocus = document.links[a].blur;
	}

	if (document.all) {
		document.onmousedown = ExplorerFix;
	}

	if (document.images) {
		pic0_on = new Image();
		pic0_on.src = "/images/nav_0.gif";

		pic1_on = new Image();
		pic1_on.src = "/images/nav_1.gif";

		pic2_on = new Image();
		pic2_on.src = "/images/nav_2.gif";

		pic3_on = new Image();
		pic3_on.src = "/images/nav_3.gif";

		pic4_on = new Image();
		pic4_on.src = "/images/nav_4.gif";

		pic5_on = new Image();
		pic5_on.src = "/images/nav_5.gif";

		pic6_on = new Image();
		pic6_on.src = "/images/nav_6.gif";

		pic7_on = new Image();
		pic7_on.src = "/images/nav_7.gif";

	}

	function imgOn(imgName) {
		if (document.images) {
			document.change.src = eval(imgName + "_on.src");
		}
	}

	function backToTop(imgName, rollOver) {
		if (document.images) {
			theImage = 'top' + imgName;
			document[theImage].src = "/images/tothetop" + rollOver + ".gif";
		}
	}

	function addFavorite() {
		if (window.external) {
			window.external.AddFavorite(document.location.href,'1st WebDesigns - web design & e-commerce solutions');
		}
	}

	function validateReview() {
		var emailID = document.contactForm.Email.value;
		var nameID = document.contactForm.Name.value;
		var companyID = document.contactForm.Company.value;
		var telephoneID = document.contactForm.Telephone.value;
		var webID = document.contactForm.Website.value;

		var message = '';

		if ((webID == null) || (webID == '')) {
			message = 'Please enter your existing Web Site Address\n\n';
		}

		if ((nameID == null) || (nameID == '')) {
			message = message + 'Please enter your Full Name\n\n';
		}

		if ((companyID == null) || (companyID == '')) {
			message = message + 'Please enter your Company Name\n\n';
		}

		if (echeck(emailID) == false) {
			message = message + 'Please enter a valid Email address\n\n';
		}

		if (tcheck(telephoneID) == false) {
			message = message + 'Please enter a valid Telephone Number\n\n';
		}

		if (message) {
			alert('*** You must make the below corrections in order to proceed ***\n\n' + message);
			return false;
		}

		return true;
	}

	function validateContact() {
		var nameID = document.contactForm.Name.value;
		var companyID = document.contactForm.Company.value;
		var telephoneID = document.contactForm.Telephone.value;
		var enquiryID = document.contactForm.Enquiry.value;

		var message = '';

		if ((nameID == null) || (nameID == '')) {
			message = 'Please enter your Full Name\n\n';
		}

		if ((companyID == null) || (companyID == '')) {
			message = message + 'Please enter your Company Name\n\n';
		}

		if (tcheck(telephoneID) == false) {
			message = message + 'Please enter a valid Telephone Number\n\n';
		}

		if ((enquiryID == null) || (enquiryID == '')) {
			message = message + 'Please enter an Enquiry\n\n';
		}

		if (message) {
			alert('*** You must make the below corrections in order to proceed ***\n\n' + message);
			return false;
		}

		return true;
	}

	function echeck(str) {

		var at="@"
		var dot="."
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		  	return false
		}

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
			return false
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
			return false
		}

		if (str.indexOf(at,(lat+1))!=-1){
			return false
		}

		if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
			return false
		}

		if (str.indexOf(dot,(lat+2))==-1){
			return false
		}
		
		if (str.indexOf(" ")!=-1){
			return false
		}

 		return true					
	}

	function tcheck(str) {
		var valid = 1;
		var GoodChars = "0123456789()-+ ";
		var i = 0;
		if ((str=='') || (str.length < 6)) {
			// Return false if number is empty
			valid = 0;
		}
		for (i =0; i <= str.length -1; i++) {
			if (GoodChars.indexOf(str.charAt(i)) == -1) {
				valid = 0;
			} // End if statement
		} // End for loop
		return valid;
	}




   //-->