//トップページでの画像クリック
function showImage(fName,width,height){
	var str=navigator.appName.toUpperCase();
	if (str.indexOf("EXPLORER") > 0) {
		width=width+40;
		height=height+40;
	}

	var sStr="scrollbars=yes,resizable=yes,status=no,menubar=no,width="+width+",height="+height;
	w=window.open(fName,"",sStr);
}


	function changeForm(location){
		var form =document.forms["sendForm"];
		form.action=location;
		form.method="POST";
		form.submit();
	}



function enterclick(){
	if(event.keyCode==13){
		if(window.event.srcElement.type!='submit' &&  window.event.srcElement.type!='textarea'){
			window.alert(window.event.srcElement.type);
			return false;
		}
	}
}

