/*---------- form ----------*/
function clearForm(){
if(document.search.word){
	document.search.word.value="";
}
}
/*lostpassword window*/
function lossPass(){
window.open("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);
	}
}
