function validateGuide(Item_Type, Page)
{

	/*only difference is no advertise button to enable again */
	var Advert_name = "";
	var Advert_name_value = "";
	
	var city = "";
	var city_value = "";
		
	var county_value = "";
	var country_value = "";
	
	var postcode = "";
	var postcode_value = "";
		
	var ptype_value = "";
	var email_value = "";
	var terms_value = "";
	var age_value = "";
	
	var Advert_name = document.add_details.fCompany_Name.value
	var Advert_name = Advert_name.replace(/ /g,"")		
	if (Advert_name == '')
				{
					 Advert_name_value = " \nEnter a Title";
				}	
	
	/*if (Page != "Admin") {	
		if (Page != "AdminAdd") {*/
														
			var city_value = " \nSelect atleast One City or Enter a new City";		
						
			for (var i=0; i <= document.add_details.cboCityAdvertise.options.length-1; i++)
			{
				if (document.add_details.cboCityAdvertise.options(i).selected) {
					var city_value = "";
					}
			} 		
		/*}
		else {
			var city = document.add_details.fCity.value
			var city = city.replace(/ /g,"")
			if (city == '')
						{
							 city_value = " \nEnter a City";
						}
		}
	}
	else {
		var city = document.add_details.fCity.value
		var city = city.replace(/ /g,"")
		if (city == '')
					{
						 city_value = " \nEnter a City";
					}
	}*/
	
	if (city_value != '') {
		if (Page != "Admin") {	
			if (Page != "AdminAdd") {
				var city = document.add_details.fCity.value
				var city = city.replace(/ /g,"")							
				if (city != '' && city != 'EnterCity')
					{
						 city_value = "";
					}	
			}
		}
	}
	
	
	if (Page != "Admin") {	
		if (Page != "AdminAdd") {
			if (document.add_details.cboCountryAdvertise.options[document.add_details.cboCountryAdvertise.options.selectedIndex].value == 0)
					{
						country_value = " \nSelect a Country";
					}
			
			if (document.add_details.cboCountyAdvertise.options[document.add_details.cboCountyAdvertise.options.selectedIndex].value == 0)
					{
						county_value = " \nSelect an Area";
					}
		}
	}
	
	if (Page == "Admin") {	
						
		if (document.add_details.cboCountry.options[document.add_details.cboCountry.options.selectedIndex].value == 0)
					{
						country_value = " \nSelect a Country";
					}
						
		if (document.add_details.cboCounty.options[document.add_details.cboCounty.options.selectedIndex].value == 0)			
					{
						county_value = " \nSelect an Area";
					}
	}	
				
	if (Page == "AdminAdd") {	
		
		if (document.add_details.cboCountryAdmin.options[document.add_details.cboCountryAdmin.options.selectedIndex].value == 0)
					{
						country_value = " \nSelect a Country";
					}

		
		if (document.add_details.cboCountyAdmin.options[document.add_details.cboCountyAdmin.options.selectedIndex].value == 0)
					{
						county_value = " \nSelect an Area";
					}
	}	
				
	/*if (document.add_details.fCountry.options[document.add_details.fCountry.options.selectedIndex].value == 0)
				{
					country_value = " \nEnter a Region";
				}*/			
	
	var postcode = document.add_details.fPostcode.value
	var postcode = postcode.replace(/ /g,"")			
	if (postcode == '')
				{
					 postcode_value = " \nEnter a Postcode";
				}	
	
	if (!verif_email(document.add_details.fEmail.value))
				{
					 email_value = " \nEnter correct Email";
				}
				
	if (Page != "Admin") {	
		if (Page != "AdminAdd") {
		
			var terms_value = ""
			if (document.add_details.terms.checked == false)
					{
						 terms_value = " \nCheck the Terms and Conditions";
					}
					
			var age_value = ""
			if (document.add_details.AgeCheck.checked == false)
					{
						age_value = " \nCheck the 'I am 18 years old or over'";
					}
		}
	}
				
	if (Advert_name_value != "" || city_value != "" || county_value != "" || country_value != "" || postcode_value != "" ||  email_value != "" || terms_value != "" || age_value != "")
			{
				alert("You must:\n"+Advert_name_value + city_value + county_value + country_value + postcode_value +  email_value + terms_value + age_value);
				document.getElementById('SubmitBut').disabled=false;
		  	
			return false;
			}
	
	return true;
}