//customer.js

	sHeaderType = "default";  
	sBreadcrumbType = "none";   
	sSite = "sic";   
	sShowAcrobat = "true";	
   	sUtilitiesType= "none";
	sMastheadType = "sic";
	
	//sPageTitle    ="Oregon Educators Education Board";
	wcMh.searchType = "none";
	wcEnterpriseMenuType = "none";
	
	sLocalGraphic = "pix/logo.jpg";
	sLocalGraphicHeight = "71";
	sLocalGraphicWidth = "158";
	

/*	
wcSubLocalMenu("1", "<h2>Welcome</h2>", "index.html", "");
wcSubLocalMenu("2", "<strong>Life Insurance</strong>", "#", "");
wcSubLocalMenu("3", "Basic Life", "life_add.html", "");
wcSubLocalMenu("3-", "Needs Estimator", "needs.html", "");
wcSubLocalMenu("4", "Optional Life Insurance", "life_add.html", "");
wcSubLocalMenu("4-", "Needs Estimator", "needs.html", "");
wcSubLocalMenu("5", "Optional AD&D Insurance", "life_add.html", "");
wcSubLocalMenu("5-", "Needs Estimator", "needs.html", "");
*/
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);
}	