// JavaScript Document


function hide(hide)
{
	if (!document.getElementById) return null;
	var hideWhat = document.getElementById(hide);
	hideWhat.style.display = "none";
}

function show(show)
{
	if (!document.getElementById) return null;
	var showWhat = document.getElementById(show);
	showWhat.style.display = "block";
}

function openWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
