	function now(){
        return new Date();
	}
	var today = now();
	var thisYear = today.getYear();
	if(thisYear < 2000){
   		thisYear += 1900;
	}
	var copyright = "copyright &copy;2002-"+thisYear+" Kaiser Foundation";

	//document.write(copyright);
	
	
	function writemail(target, domain){
		var emailer = "<a href=\"mailto:"+target+"@"+domain+"\" title=\"Email "+target+"@"+domain+"\">"+target+"@"+domain+"</a>";
		return emailer;
	}
	
	//document.write(writemail('info','example.com'));
	
	function showTitle(title){
		self.status =  title;
	}
	
	function showNone(){
		self.status = '';
	}
	
  //POP-UP SCRIPT
  function openWin(URL, varWidth, varHeight, varLeft, varTop){
		if(varTop == ""){
			varTop = 0;
		}
		if(varLeft == ""){
			varLeft = 0;
		}
		if(varLeft == "right"){
			varLeft = screen.width - varWidth - 25;
		}
		if(varLeft == "center"){
			varLeft = (screen.width/2) - (varWidth/2);
			varTop = (screen.height/2) - (varHeight/2);
		}
		if(varLeft == "left"){
			varLeft = 25;
		}
		myWindow = window.open(URL, 'images', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no,left='+varLeft+',top='+varTop+',width='+varWidth+',height='+varHeight+''); 
		myWindow.focus();
	}
	
	//PRINT WINDOW
	function printWindow()
	{
		bV = parseInt(navigator.appVersion);
        if (bV >= 4) window.print();
	}