// JavaScript Document

function switchDisp(id, val)
{
	onDisp(id);
}

function onDisp(id)
{
	elem = document.getElementById(id);
	
	elem.style.display = 'block';
}

function offDisp(id)
{
	elem = document.getElementById(id);
	
	elem.style.display = 'none';
}
function openWin_highseason() {
   window.open(
      'http://www.k3a-parking.com/highseason.htm',
	  'highseason',
	  'width=380,height=300,left=0,top=0,scrollbars=yes,location=no,menubar=no'
   );
}
