// JavaScript Document

// popup window

function newWin(url)
{
        if(top.browser=="explorer")
        {
        top.NaviWin=window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=800,height=600');        
		}
        else
        {
        top.NaviWin=window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=800,height=600');top.NaviWin.focus();
top.NaviWin.moveTo(5,5);
        }
}

// print page
function prnPage()
{
	window.print()
}

// now selling menu

function changeMenuWt(item, state)
{
  item.style.backgroundColor=(state=="on") ? "#97AFCB" : "#ffffff";
}

function changeMenuLt(item, state)
{
  item.style.backgroundColor=(state=="on") ? "#97AFCB" : "#C8D5E0";
}

