	
	<!---	
	
		//////////////////////////////////////////////////////////////////////////////////
	// This script is used for the about us pop page
	//////////////////////////////////////////////////////////////////////////////////	
	
function openWinAboutUs(url)
{
	window.open(url,null,"height=600,width=800,status=yes,toolbar=yes,menubar=yes,location=no,resizable=yes,scrollbars=yes");
}

	
	//////////////////////////////////////////////////////////////////////////////////
	// This script parses content for PrintFreindly 
	//////////////////////////////////////////////////////////////////////////////////	
	
	function Printer_Friendly( )
	{
		var p = "";
		
		p = document.getElementById('printFriendly').innerHTML;
		document.getElementById('parContent').value = p;
		
		if( document.getElementById('parContent').value == "" )
		{
			alert("This feature does not work with your current browser.");
			return false;
		}
		else
		{
			return true;
		}

		
	}
	
	//////////////////////////////////////////////////////////////////////////////////
	// This script is to pops up a message when user leaves the site
	//////////////////////////////////////////////////////////////////////////////////	
	
	 /*
     Script for opening a confirm disclaimer when user clicks on external link 
     url: the web page or site the link should go to
     win: (optional) if any text is entered here, a new window will be created 
    */
    function decision(url,win) {
      // message to display in confirm box (use \n for a line break if desired)  
      message = "You are about to leave the Regence BlueCross BlueShield of Utah Web site.\n"+
                "Content on the following Web sites may not be approved or authorized "+
                "by Regence BlueCross BlueShield of Utah.";
      
      if(confirm(message)) {       
        // if there is a "win" entry, show content in new window
        if (win) {  
          window.open(url);  
        // if no "win" entry, show content in existing window
        } else {
          location.href = url;
        }
  	  }    
    } 
    
	//////////////////////////////////////////////////////////////////////////////////
	// This script is to manage dynamic rollovers(internal)
	//////////////////////////////////////////////////////////////////////////////////	

	if (document.images) {
		
	
		h01on=new Image;h01on.src="/images/forMembersHot.gif";h01off=new Image;h01off.src="/images/forMembersHome.gif";
		h02on=new Image;h02on.src="/images/needCoverageHot.gif";h02off=new Image;h02off.src="/images/needCoverageHome.gif";
		h03on=new Image;h03on.src="/images/aboutHot.gif";h03off=new Image;h03off.src="/images/about.gif";
	
	}
	
	function on(imgName)	{
		if (document.images) {document[imgName].src = eval(imgName + "on.src");}}
	
	function off(imgName) {
		if (document.images) {document[imgName].src = eval(imgName + "off.src");}}

	//--->
	