var visPCQ = '';
var visualhotels_xml;
$(document).ready(function() {
	var tmpVisLoc = window.location;
	var visPC = tmpVisLoc.toString().match(/hotelDescription_([A-Z0-9]+)*_/i);
	visPCQ = visPC[1].toString();
	$.ajax({
	   type: "POST",
	   url: "/newDes/visPCTour.php",
	   data: "pc="+visPCQ,
	   dataType: "xml",
	   success: function(xmls){
			var error5 = 200;
			try {
				error5 = xmls.getElementsByTagName('error').item(0).nodeValue
			}
			catch (e)
			{
				if (error5 == 500)
				{
					return;
				}
				else
				{
					visualhotels_xml = xmls;
					VH_ParseXML();
					VH_MakeTour();
					window.onresize = VH_OnResize;
				}
			}
		}
	 });
});
