//hennepin.js

	//wcEnterpriseMenuType= "none";
	sHeaderType = "default";  
	sBreadcrumbType = "none";   
	sSite = "sic";   
	sShowAcrobat = "true";	
   	sUtilitiesType= "none";
	sMastheadType = "sic";
	
	sLocalGraphic = "pix/logo.gif";
	sLocalGraphicHeight = "82";
	sLocalGraphicWidth = "67";
	   
	wcMh.searchType = "none";
	wcEnterpriseMenuType = "none";


function popup(page,width,height,scroll,menu) {
		// the next 2 vars get the center screen position 
		//var winl = 45; //(screen.width - width) / 2;
		var winl = (screen.width - width) / 2;
		var wint = (screen.height - height) / 2;
		//alert("left: " + winl + "\ntop: " + wint);
		// the list of window properties
		winprops = 'height='+height+',width='+width+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=yes,status=yes';
		// if menu is requested, add all the nesessary parts
		if (menu=='yes')
			winprops += ',menubar=yes,toolbar=yes,locationbar=yes';
		// open the new window
		window.open(page, 'newWindow', winprops);
}	
	
