	
	<!---	
	
	
	//////////////////////////////////////////////////////////////////////////////////
	// 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
	//////////////////////////////////////////////////////////////////////////////////	
	
	function decision(url)
	{
		if(confirm('By clicking ok, you agree to the terms of use of the Medical Policy Manual located at the bottom of the page.'))
		{
			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");}}

	//--->
	