//image file path
if(page=="TOP"){
	var logopath = "common/images/logo.png";
	var blankpath = "common/images/blank.gif";
}else{
	var logopath = "../common/images/logo.png";
	var blankpath = "../common/images/blank.gif";
}
//script for display logos ie6 and other browsers
if (typeof document.body.style.maxHeight != "undefined") { 
// IE 7, mozilla, safari, opera 9 
	document.write("<a href=http://www.kurashiki-okoshi.com/><img src='"+logopath+"'");
} else { 
// IE6, older browsers 
	document.write("<a href=http://www.kurashiki-okoshi.com/><img src='"+blankpath+"' style='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+logopath+");'");
}
document.write("width='182' height='72' border='0' alt='Kurashiki-Okoshi'></a>");