			function pop(url,name,w,h,scroll) {
					var x = window.open(url,name,'width='+w+',height='+h+',toolbar=no,location=no,status=no,scrollbars=yes,resizable=no')
			}
			function MM_openBrWindow(theURL,winName,features) { 
			  window.open(theURL,winName,features);
			}
			
<!-- Begin
			function validate1() {
			
			var theMessage = "Please complete the following: \n ----------------------------------- \n";
			var noErrors = theMessage
			
			if (document.callbackform.callbackname.value=="") {
			theMessage = theMessage + "\n --> Your name";
			}
			
			if (document.callbackform.callbackphone.value=="") {
			theMessage = theMessage + "\n --> Your phone No.";
			}
			
			// 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() {
			
			var theMessage = "Please complete the following: \n ----------------------------------- \n";
			var noErrors = theMessage
			
				
			// make sure field is not blank
			if (document.test.titlename.value=="") {
			theMessage = theMessage + "\n --> Title and Name";
			}
			// make sure field is not blank
			if (document.test.phone.value=="") {
			theMessage = theMessage + "\n --> Phone No.";
			}
			// make sure field is not blank
			if (document.test.address.value=="") {
			theMessage = theMessage + "\n --> Address";
			}
			// make sure field is not blank
			if (document.test.city.value=="") {
			theMessage = theMessage + "\n --> City";
			}
			// make sure field is not blank
			if (document.test.postcode.value=="") {
			theMessage = theMessage + "\n --> Postcode";
			}
			// validate an e-mail address
			if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.test.email.value)){
			theMessage = theMessage + "\n --> A valid e-mail address";
			}		

			// make sure field is not blank
			if (document.test.text.value=="") {
			theMessage = theMessage + "\n --> Comments";
			}
			
			// 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 toggleBox(szDivID, iState) // 1 visible, 0 hidden
			{
			   var obj = document.layers ? document.layers[szDivID] :
			   document.getElementById ?  document.getElementById(szDivID).style :
			   document.all[szDivID].style;
			   obj.visibility = document.layers ? (iState ? "show" : "hide") :
			   (iState ? "visible" : "hidden");
			}
			// -->
