//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;


function sendemail_validate()
{
	
	
	if(document.form1.firstname.value == ""){
		alert("Enter the First Name");
		document.form1.firstname.focus();
		return false;
	}
	if(document.form1.lastname.value == ""){
		alert("Enter the Last Name");
		document.form1.lastname.focus();
		return false;
	}
	if(document.form1.company.value == ""){
		alert("Enter the Company");
		document.form1.company.focus();
		return false;
	}
		if(document.form1.phonenumber.value == ""){
		alert("Enter the Phone Number");
		document.form1.phonenumber.focus();
		return false;
	}
	if(document.form1.email.value == ""){
		alert("Enter the email");
		document.form1.email.focus();
		return false;
	}

	if(document.form1.city.value == ""){
		alert("Enter the City");
		document.form1.city.focus();
		return false;
	}
	
	if(document.form1.state.value == ""){
		alert("Enter the State");
		document.form1.state.focus();
		return false;
	}
	if(document.form1.description.value == ""){
		alert("Enter the Description");
		document.form1.description.focus();
		return false;
	}
if(document.form1.application.value == ""){
		alert("Enter the Application");
	document.form1.application.focus();
	return false;
}
	
}

