	
	<!---	
	
	
	//////////////////////////////////////////////////////////////////////////////////
	// 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 Group Web site.\n"+
                "Content on the following Web sites may not be approved or authorized "+
                "by The Regence Group.";
      
      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;
        }
  	  }    
    } 
    
	