<!--hide this script from non-javascript-enabled browsers

/* Functions that handle preload. */
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 showContactForm() { 
		// Arguments: none 
		// 03/03/07.Michael Slie.Add code to center pop-up form on page
		var pageURL = '/uas/Contact/contactuspop.asp', mywidth = 650, myheight = 400;

		if (document.all) 
		{ 
			var xmax = screen.width, ymax = screen.height; 
		}
		else
		{ 
			if (document.layers) 
			{
			var xmax = window.outerwidth, ymax = window.outerheight;
			}
			else
			{
			var xmax = 640, ymax = 480; 
			}
		 }

		var xoffset = (xmax - mywidth)/2, yoffset = (ymax - myheight)/2;

//	ContactUSWin = window.open(pageURL, 'ContactUSWin','resize,scrollbars,width=650,height=400,left=100,top=50'); 
	ContactUSWin = window.open(pageURL, 'ContactUSWin','resize,scrollbars,width='+mywidth+',height='+myheight+',top='+yoffset+',left='+xoffset); 
//
	if(ContactUSWin.opener == null) 
	{ 
		ContactUSWin.opener = self 
	}

	}
// End of the script

-->