
function OpenWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openwin(URL,W,H) {

	window.open(URL,'HELP','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + W + ',height=' + H);

}

function resetstime(){
	document.form.stime.value = '12:00 AM';
}	
function resetetime(){
	document.form.etime.value = '11:59 PM';
}	

function ShowHideElement(location) {
  var DisplayChoice = "none";
  if (document.getElementById(location).style.display == "none")
  { DisplayChoice = "block";	}
  document.getElementById(location).style.display = DisplayChoice;
}

function ConfirmDelete() {
	return confirm('Delete this information?\nBy deleting all information it will be removed.  Once removed\nthe information may not be restored.\n\nIf you do not wish to delete this information, select Cancel now.')
}

