<!--
function pageChange(page) {

	var	str = new Array();

	if (page == "top") {
		if (top.main.location.href == "about:blank") {
			if (location.search.substr(6) != "") {
				str = top.main.location.href.split("/");
				if (str[str.length - 1] != location.search.substr(6)) {
					top.main.location.href = location.search.substr(6);
				}
			}else{
				top.main.location.href = "top.html";
			}
		}
	} else if (page.substr(0, 4) != "main") {
		if (window.location.href == window.top.location.href) {
			location.href = page;
		}
	} else if (page.substr(0, 4) == "main") {
		if (window.location.href == window.top.location.href) {
			location.href = "index.html?page=" + page;
		}
	}
}

function changeImage(name, img) {

	document.all.item(name).src = img;

}

// -->

