/*---------- form ----------*/
function clearForm(){
if(document.search.word){
	document.search.word.value="";
}
}
/*lostpassword window*/
function lossPass(){
window.open("http://www.kakucho.co.jp/shop/lostpass.cgi","","width=420,height=220");
}

/*---------- shop ----------*/
agt = window.navigator.userAgent.toLowerCase();
isIE = (agt.indexOf('msie') >= 0 && agt.indexOf('opera') < 0) ? true : false;

function showmenu(num) {

	var menu = document.getElementById('menu_'+num);

	if (isIE) {
		var a = menu.attributes.getNamedItem('class');
		a = (a) ? a.value : menu.attributes['class'];
	} else {
		var a = menu.getAttribute('class');
	}

	var newCls = (a != 'hide') ? 'hide' : '';

	if (isIE) {
		var a = menu.attributes.getNamedItem('class');
		a.value = newCls;
	} else {
		menu.setAttribute('class',newCls);
	}
}
function showwin(mydiv){
	if(document.getElementById(mydiv).style.display == 'none'){
	 document.getElementById(mydiv).style.display = 'block'; 
	 }else{ 
	 document.getElementById(mydiv).style.display = 'none'; 
	 }
}
function create_link(image_url){
	return;
}
