
function validate_checkForm()
{
    var Name 		= document.form.Name;
    var Title 		= document.form.Title;
    var Years 		= document.form.Years;
    var LevelBefore	= document.form.LevelBefore;
    var LevelAfter	= document.form.LevelAfter;
    var Source	= document.form.Source;
    var StarRating	= document.form.StarRating;
    var Recommendations	= document.form.Recommendations;
    var TutorialsHelpful	= document.form.TutorialsHelpful;
    var SeminarsHelpful	= document.form.SeminarsHelpful;
    var TradingImproved	= document.form.TradingImproved;
    var Permission	= document.form.Permission;


    var SoftwareBefore	= document.form.SoftwareBefore;
    var update    		= document.form.update.value == "True";
    
       

            if (Title.value == '')
    {
        window.alert("Please enter your title");
        Title.focus();
        return false;
    }  
 
            if (Name.value == '')
    {
        window.alert("Please enter your Name");
        Name.focus();
        return false;
    }            
    
			 if (Years.value == '')
    {
        window.alert("Please enter the number of Years/Months you have been using FX MoneyMap");
        Years.focus();
        return false;
    }  
 
			 if (LevelBefore.value == 'Select')
    {
        window.alert("Please enter the level of forex trader you were before you started using fx MoneyMap");
        LevelBefore.focus();
        return false;
    }  
 
			 if (LevelAfter.value == 'Select')
    {
        window.alert("Please enter the level of forex trader you are after using fx MoneyMap");
        LevelAfter.focus();
        return false;
    }  
 
 
 	if ((StarRating[0].checked == false) && (StarRating[1].checked == false) && (StarRating[2].checked == false) && (StarRating[3].checked == false) && (StarRating[4].checked == false) && (StarRating[5].checked == false))
	{
	window.alert("Please specify that star rating would you give fxMoneyMap");
	return false;
	} 
 
			 if (SoftwareBefore.value == '')
    {
        window.alert("Please specify the forex trading software/platform that you have used previously");
        SoftwareBefore.focus();
        return false;
    }  
			 
 
		if (Source.value == 'Select')
	{
	window.alert("Please specify how you found out about FxMoneyMap");
	Source.focus();
	return false;
	} 
	
	
	
 	if ((Recommendations[0].checked == false) && (Recommendations[1].checked == false))

	{
	window.alert("Please specify if you would recommend FxMoneyMap to a friend.");
	return false;
	} 

 	if ((TutorialsHelpful[0].checked == false) && (TutorialsHelpful[1].checked == false))
	{
	window.alert("Please specify if the online tutorials were helpful.");
	return false;
	} 

 	if ((SeminarsHelpful[0].checked == false) && (SeminarsHelpful[1].checked == false))

	{
	window.alert("Please specify if the live seminars were helpful.");
	return false;
	} 
	
	
	if ((TradingImproved[0].checked == false) && (TradingImproved[1].checked == false))
	{
	window.alert("Please specify if FxMoneyMap™ has improved your Forex trading.?");
	return false;
	} 

	if ((Permission[0].checked == false) && (Permission[1].checked == false))
	{
	window.alert("Please specify if we can display your testimonial on our website.");
	return false;
	} 
	
return true;
}



