/* Quick link validation */
function regvalid()
	{
	if(document.free_consultation.name.value=="Full Name :")
		{
		alert("Please Enter Your Full Name");
		document.free_consultation.name.focus();
		return false;
		}
	if(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.free_consultation.email.value))
   {   
   }
   else
   {
	   alert("Please Enter Your Valid E-mail Address");
	   document.free_consultation.email.focus();
	   return (false);
	}
	if(document.free_consultation.mobile.value=="Your Telephone :")
		{
		alert("Please enter your phone");
		document.free_consultation.mobile.focus();
		return false;
		}
	if(isNaN(document.free_consultation.mobile.value))
		{
		alert("Please enter your valid phone");
		document.free_consultation.mobile.focus();
		return false;
		}

	if(document.free_consultation.comments.value=="Message :")
		{
		alert("Please enter your message");
		document.free_consultation.comments.focus();
		return false;
		}
    
if(document.getElementById('captcha_quick').value=="")
		{
		alert("Please Enter the string as shown in the captcha image.");
		document.getElementById('captcha_quick').focus();
		return false;
		}


	if(randomnumber!=document.getElementById('captcha_quick').value)
		{
		alert("Please Enter the currect string as shown in the captcha image.");
		document.getElementById('captcha_quick').focus();
		return false;
		}				
	}

	function captcha() {
		if(randomnumber!=document.getElementById('captcha_quick').value)
			alert('Please Enter the string as shown in the captcha image.');
		}
