function openPrintPopup(winUrl) {
		if (window.printBox) {
			if (! window.printBox.closed) window.printBox.close();
		}
	window.open('print.asp?page='+winUrl,'printBox','toolbar=yes,location=no,directories=no,menubar=no,status=no,scrollbars=yes,resizable=yes,width=600,height=450') 
}

function NaviLink(myLink) {
	if(document.getElementById){
		window.open(document.getElementById(myLink).href,'_top');
	}
}
function setNaviActive(myTdID) {
	if(document.getElementById){
		myColor='#203384'
		document.getElementById(myTdID).style.backgroundColor= myColor ;
	}
}	