function getHTML(inURL,inDiv) 
{
			var xmlhttp;
			
  			
			if (window.XMLHttpRequest) {
				xmlhttp = new XMLHttpRequest();
			} else if (window.ActiveXObject) {
				xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
			}			
  									
			    div = document.getElementById(inDiv);				
				xurl = inURL;
		    	xmlhttp.open('GET', xurl ,true);
			
				xmlhttp.onreadystatechange=function() {
				if (xmlhttp.readyState==4) {
					//div.innerHTML = "";
					div.innerHTML = xmlhttp.responseText;
 		 		}
 				}
				xmlhttp.send(null)
}


function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}


function goRegion() {
	x = document.quick_link_lists.region.options[document.quick_link_lists.region.selectedIndex].value;
	if(x) {
		x = '/regional.php?region=' + x;
		top.document.location.href = x;
	}
}

function goState() {
	x = document.quick_link_lists.state.options[document.quick_link_lists.state.selectedIndex].value;
	if(x) {
		x = '/state.php?state_id=' + x;
		top.document.location.href = x;
	}
}