function getShipDestination(ShipCode, ShipName)
{
	$.ajax({
	type: "GET",
	url: "DestinationShipXML.xml",
	dataType: "xml",
	success: function(xml) {
		$(xml).find("item").each(function(){
			 var _shipname = $("ShipName", this).text();
			 var _shipcode = $("ShipCode", this).text();	
			 if (_shipcode.toLowerCase() == ShipCode.toLowerCase() && _shipname.toLowerCase() == ShipName.toLowerCase())
			   //location.href = "../" + $("ShipURL", this).text();	
			   window.open("../" + $("ShipURL", this).text());
			})
	}
   });
}
