<!--
// JavaScript Document

	/*********************************************************
	Load the appropriate style sheet for different browsers
	*********************************************************/
	if(navigator.appName == "Microsoft Internet Explorer") {
		document.write('<link rel="stylesheet" type="text/css" href="../common/Styles.css" />');
	} else {
		document.write('<link rel="stylesheet" type="text/css" href="../common/Styles_mz.css" />');
	}

	/*********************************************************
	Return the file name of the current page for linking
	*********************************************************/
	function CurrentPage(){
		var sLocation = document.location.href;
		var nLeft = sLocation.lastIndexOf('/');
		var nRight = sLocation.lastIndexOf('.html');
		if ( sLocation.indexOf('_en.html') > 0 || sLocation.indexOf('_sp.html') > 0 ) {
			return (sLocation.substring(nLeft + 1, nRight - 3));
		} else {
			return (sLocation.substring(nLeft + 1, nRight));
		}
	}

	/*********************************************************
	Begins block to do text blinking */
	function doBlink() {
		var blink = document.all.tags("BLINK")
		for (var i=0; i<blink.length; i++)
			blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "" 
	}	
	function startBlink() {
		if (document.all)
			setInterval("doBlink()",1000)
	}
	window.onload = startBlink;
	/* Ends block to do text blinking
	*********************************************************/
// -->

