<!--
var ancBotUrl;

function ancMain(ancUrl,ancDiv,botUrl){
	ancUrl = "ancL.aspx?ancMov=" + ancUrl;
	if(window.XMLHttpRequest){
		xmlhttp=new XMLHttpRequest();
	}else{
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4){
			if(xmlhttp.status == 200){
				document.getElementById(ancDiv).innerHTML = xmlhttp.responseText;
			}else{
				document.getElementById(ancDiv).innerHTML = "<br /><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p><font color='maroon'>Cannot process your request this time. Please try later!</font></p>";
			}
		}
	};
	xmlhttp.open("GET", ancUrl, true);
	xmlhttp.send(null);
	
	ancBot(botUrl);
}

function ancBot(botUrl){
	ancBotUrl = botUrl;
	document.getElementById('divLtBot_JQ').innerHTML = '<center><img src="img_AGCZ/loader4.gif" width="16" height="16" /><br /><br />loading... please wait!</center>';
	setTimeout('ancBot2()', 1000);
}

function ancBot2(){

	strOnError = "<table border='0' cellpadding='0' cellspacing='0' width='100%' height='100' class='botBox'>" + 
					"<tr>" + 
						"<td valign='bottom'>" + 
							"<img border='0' src='img_AGCZ/bot_HolidayRegency2b.gif' width='229' height='99' />" + 
						"</td>" + 
						"<td valign='bottom'>&nbsp;</td>" + 
						"<td valign='bottom' align='center' style='padding-bottom: 8px'>" + 
							"<img border='0' src='img_AGCZ/bot_NewStandard.jpg' width='231' height='65' />" + 
						"</td>" + 
					"</tr>" + 
				 "</table>"

	if(ancBotUrl == ""){
		document.getElementById('divLtBot_JQ').innerHTML = strOnError;
		return;
	}

	if(window.XMLHttpRequest){
		xmlhttp=new XMLHttpRequest();
	}else{
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4){
			if(xmlhttp.status == 200){
				document.getElementById('divLtBot_JQ').innerHTML = xmlhttp.responseText;
			}else{
				document.getElementById('divLtBot_JQ').innerHTML = strOnError;
			}
		}
	};
	xmlhttp.open("GET", ancBotUrl, true);
	xmlhttp.send(null);
}

function openWin(url,n,f) {
	window.open(url,n,f);
}

// Author -> Anchul Gupta
// www.agcomputerzone.org

//-->