﻿// JavaScript Document
function traderBnr() {
	var path = location.pathname;
	if(path.match(/trader/i) =="trader"){}
	else{
		var htmlStr = "";		
		htmlStr += '<p class="bnr">';
		htmlStr += '<a href="/trader/index.html">';
		htmlStr += '<img src="/images/home/bnr_exclusive.png" alt="業者専用ページ" width="220" height="90" class="imgov" />';
		htmlStr += '</a></p>';
		document.write(htmlStr);
	}
}
