// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// show hide
function show(iName)
{
	document.getElementById(iName).style.display = "block";
	document.getElementById("foot").style.position = "relative"; //footerを常にページ最下部に表示させている場合に必要
}

function hide(iName)
{
	document.getElementById(iName).style.display = "none";
	document.getElementById("foot").style.position = "absolute"; //footerを常にページ最下部に表示させている場合に必要
}


function openWin(url, width, height) {
  window.open(url, 'infinity', "width=" + width + ",height=" + height);
}
