	function relationslinks() {
//		if (checkBrowser() == "MI") {
		if (1) {
			//MacIE
			return;
		}

		var from_url = document.URL ;
		var url = '/utils/relationslinks.php';
		var parameters = "from_url=" + from_url ;
		new Ajax.Updater(
			'relationslinks',
			url, 
			{
				method: 'get',
				asynchronous: true,
				parameters: parameters,
				onFailure: function() {
					// NOP
				}.bind(this),
				onSuccess: function() {
					// NOP
				}.bind(this)
			}
		);
	}

	function showBanner() {
		//MORISAWA news
		document.write('<a href="/morisawanews/" title="MORISAWA news"><img src="/shrd/bnr_mnews.gif" width="204" height="23" class="bnr" alt="MORISAWA news" /></a>');

		if (checkBrowser() == "MI") {
			//MacIE
			return;
		}

		if (location.pathname.match(/^\/font\//)) {
			if (location.pathname.match(/^\/font\/products\/passport\//)) {
				if (!location.pathname.match(/\/passport\/buy\/(index\.html|straightplan\.html|order\/)/)) {
					//buy MORISAWA PASSPORT
					document.write('<div class="topspc5"><a href="/font/products/passport/buy/index.html"><img src="/font/products/passport/imgs/bnr_buy.jpg" class="bnr" height="43" width="204"></a></div>');
				}
			} else  {
				//MORISAWA PASSPORT top
				document.write('<div class="topspc5"><a href="/font/products/passport/" title="MORISAWA PASSPORT"><img src="/font/imgs/bnr_passport.jpg" class="bnr" alt="MORISAWA PASSPORT" height="43" width="204"></a></div>');
			}
		}
	}

