//Redirect site page
function SearchClick()
{
	if (document.getElementById("Attraction").value=="")
	{
		//alert("Please enter china travel attractions")
		document.getElementById("Attraction_notice_address_m").focus();
		return;
	}

	var strID;
	var Pos;
	var strUrl;
	
	strID = document.getElementById("Attraction").value;
	//Pos = strID.indexOf("-");
	//strUrl = strID.substr(Pos+1,strID.length - 1);
	strUrl = strID;
	strUrl = strUrl.replace(" ","-");
	window.location.href=strUrl;
}

//Redirect Destination page
function SearchDesClick()
{
	if (document.getElementById("Destination").value=="")
	{
		//alert("Please enter china travel Destinations")
		document.getElementById("Destination_notice_address_m").focus();
		return;
	}

	var strID;
	var Pos;
	var strUrl;
	
	strID = document.getElementById("Destination").value;
	//Pos = strID.indexOf("-");
	//strUrl = strID.substr(Pos+1,strID.length - 1);
	strUrl=strID;

	strUrl = strUrl.replace(" ","-");
	

	window.location.href=strUrl;
}

