<!--
function checkBrowser() {
	var uAnt = navigator.userAgent; 
	if (uAnt.indexOf("Safari") > -1) return "SF"; 
	if (uAnt.indexOf("Opera") > -1) return "OP";
	if (uAnt.indexOf("Firefox") > -1) return "FF";
	if (uAnt.indexOf("MSIE") > -1) return "IE"; 
	if (document.layers) return "NN4";
	if (document.getElementById && !document.all) return "NN7";
	}

if(checkBrowser()=="NN7"){
	document.write("<link rel='stylesheet' href='/style/common/basenn7.css' type='text/css' media='all' />");
	}
 
if(checkBrowser()=="SF"){
	document.write("<link rel='stylesheet' href='/style/common/basenn7.css' type='text/css' media='all' />");
	}

function changeTop() {
	cTop = parent.location.pathname;
	parent.location.href = cTop;
	}

function changeCss(){
	document.getElementById("extCss").href="/style/insurance/print.css";
}

function printBtn() {
	print();
}




//-->