// JavaScript Document

	function validateForm1(){
		var errors = "";
		//submitform = document.forms['submitform'];

	
		errors += required($("input[name='productInterest']"),"radiogroup",$("#div_productInterest"));
		
		  if (	(document.getElementById('other').checked== true )  )

		{

		errors += required($("#otherInterest"));


		}
		else
		{
			document.getElementById('otherInterest').style.background = "#FFFFFF";



		}
		if ( errors ){
			alert("Please fill out all the required fields. \n\n The required fields will be highlighted for you.");
			window.location='#top';
			return false;
		}
		else{
			$("#submit_btn").attr("disabled","true")
			return true;
		}
	}


	function validateForm()
	{
	CheckFormInput();	
	CheckBgInfo();

		errors += required($("#role"));
	
		errors += required($("input[name='budget']"),"radiogroup",$("#div_budget"));
	
	
		if ( errors ){
			alert("Please fill out all the required fields. \n\n The required fields will be highlighted for you.");
			window.location='#top';
			return false;
		}
		else{
			$("#submit_btn").attr("disabled","true")
			return true;
		}
	}