﻿// popup window
function openWin (URL,Wid,Hei) {
	aWindow = window.open(URL,"",
        'toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,menubar=no,width=' + openWin.arguments[1] +
        ',height=' + openWin.arguments[2]);
}


// select menu href
function popJump(selOBJ)
{
	location.href=selOBJ.options[selOBJ.selectedIndex].value;
}

// show hide
function show(iName)
{
	document.getElementById(iName).style.display = "block";
	document.getElementById("show").style.display = "none";
	document.getElementById("foot").style.position = "relative";
}

function hide(iName)
{
	document.getElementById(iName).style.display = "none";
	document.getElementById("show").style.display = "block";
	document.getElementById("foot").style.position = "absolute";
}