// JavaScript Document


function getOS() {
	var str = navigator.userAgent.toUpperCase();
	if ( str.indexOf("MAC")>=0 ) return "MacOS";
	if ( str.indexOf("WIN")>=0 ) return "Windows";
	if ( str.indexOf("X11")>=0 ) return "UNIX";
	return "otherOS"
}

function getAN() {
	var str = navigator.appName.toUpperCase();
	if ( str.indexOf("MICROSOFT")>=0 ) return "Explorer";
	if ( str.indexOf("NETSCAPE")>=0 ) return "Netscape";
	return "otherApp"
}


function prtPage() {
	var strOS = getOS();
	var strApp = getAN();
	if ( strOS!="MacOS" || strApp!="Explorer" ) {
		document.write( '<a href="#" onClick="window.print()"><img src="/access/img/access_btn001.gif" alt="このページを印刷する" height="35" width="184"></a>' );
	}
}