var xmlHttp

function ajaxCallUrl(url)
{
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Your browser does not support AJAX!");
		return;
	} 
	//url= "http://www.national.com/vgn-ext-templating/views/virtualInclude.jsp?url=" + url;
	url= "/vgn-ext-templating/views/virtualInclude.jsp?url=" + url + "&next=" + parent.location.href;
	xmlHttp.onreadystatechange=stateChanged;
	//XmlHttp.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
} 

function stateChanged() 
{ 
	if (xmlHttp.readyState==4)
	{ 
		document.getElementById("virtualIncludeDIV").innerHTML=xmlHttp.responseText;
	}
}

function GetXmlHttpObject()
{
	var xmlHttp=null;
	try
	{
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
		// Internet Explorer
		try
		{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}
