<!--
// フォーカスを取得したとき
function SetFocus(element)
{
	document.forms[0].elements[element].style.backgroundColor="#f0f0f0";
	document.forms[0].elements[element].focus();
}

// フォーカスが移ったとき
function LostFocus(element)
{
	document.forms[0].elements[element].style.backgroundColor="#ffffff";
}

// 小窓のオープン
function OpenMini(url,w,h,scr){
	var left = (screen.width / 2) - (w / 2);
	var top = (screen.height / 2) - (h / 2);
	window.open(url,"MiniWindow","width=" + w + ",height=" + h + ",left=" + left + ",top=" + top + ",scrollbars=" + scr);
}


// アイテム数表示（アスクルカタログ）
function dspDim()
{
	val = "約16,100アイテム";
	document.write(val);
}

// アイテム数表示（アスクルメディカルカタログ）
function dspMDim()
{
	val = "約1,800アイテム";
	document.write(val);
}

// カタログ表示
function dspCat()
{
	val = "./image/catalog/catalog_14_2.jpg";
	document.write("<img src=\"" + val + "\">");
}

// メディカルカタログ表示
function dspCatM()
{
	val = "./image/catalog/medical_catalog_4.jpg";
	document.write("<img src=\"" + val + "\">");
}


// -->
