<!--
function validateForm()
{

var alpha = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';

var name;
name=document.rfp.name.value;
	if(name.length<=0)
	{
		alert("Enter the Name");
		return false;
	}
	
			
	var phoneNumber;
	phone=document.rfp.phone.value;
	if(phone.length<=0)
	{
		alert("Enter the phone Number");
		return false;
	}

var company;
company=document.rfp.company.value;
	if(company.length<=0)
	{
		alert("Enter the Company name");
		return false;
	}
	else
	{
		if(alpha.indexOf(document.rfp.company.value.charAt(0),0) == -1)
		 	{
				alert("Please enter a Valid company!");
				document.rfp.company.focus();
				return false
			}
		}




	

var email;
email=document.rfp.email.value;
	if(email.length<=0)
	{
		alert("enter the email");
		return false;
	}

	else
	{
	if ((document.rfp.email.value.indexOf("@")>0) && 					(document.rfp.email.value.indexOf(".")>0))
	
{
var ans;
ans=window.confirm('Pls Confirm');
if (ans==true)
return true;

else
return false;
					}

					else
					{
						alert ("Please enter a Valid E-Mail ID like yourname@company.com");
						document.rfp.email.focus();
						return false
					}
					}
}


//-->
