// JavaScript Document

function getLocation() {
	var myURL = window.location.href;
	return myURL;
}

function searchword_OnFocus() {
	var swd = document.getElementById("searchword");
	swd.value = "";
}

function viewLargeImage(wname, imgPath) {
	window.open(imgPath, wname, "width=640,height=480,scrollbars=no,resizable=no,status=no");
}

function viewImageWithSize(wname, imgPath, width, height) {
	window.open(imgPath, wname, "width="+width+",height="+height+",scrollbars=no,resizable=no,status=no");
}

function switchShow(itemid) {
	var item = document.getElementById(itemid);

	if (item.style.visibility=="hidden") {
		item.style.visibility="visible";
	}
	else {
		item.style.visibility="hidden";
	}
}

function viewCeoMovie() {
	var password = "ca-tsushin";
	var pass = document.getElementById("ceopass");
	var comment = document.getElementById("ceocomment");

	if (pass.value == password) {
		comment.innerHTML="";
		window.open("flash/ceo.html", "代表取締役", "width=320,height=280,scrollbars=no,resizable=no,status=no");
	}
	else {
		comment.innerHTML="パスワードが間違っています！";
	}
}
