function getLocationForm(){
	var windowWidth = 800;
    var windowHeight = 550;
	//var myLocationFormURL = "faq/getLocation.asp?BackLink=" + location.href;
	var myLocationFormURL = "faq/getLocation.asp";
	if (!myLocationFormContainer){
		var myLocationFormContainer = document.createElement('DIV');
	}
	myLocationFormContainer.id = "LocationFormContainer";
	hoverInfoContent.innerHTML = "";
	
	var preLoaderImg = document.createElement('IMG');
	preLoaderImg.src = "images/ajax-loader.gif";
	preLoaderImg.className = "ajaxLoader"
	myLocationFormContainer.appendChild(preLoaderImg);
  	hoverInfoContent.appendChild(myLocationFormContainer);
	ajaxFunction(myLocationFormURL, "LocationFormContainer");
	showMessage(hoverInfoContent.innerHTML, (windowWidth), (windowHeight));
} 