<!--

// Preview Pop-up Window code - Simple Machine, Inc. Code
function previewWindow(mypage) {
		var winl = (screen.width-360)/2;
		var wint = (screen.height-430)/2;
		winprops = 'height=430,width=360,top='+wint+',left='+winl+',scrollbars=no,resizable=no,status=yes';
		win = window.open(mypage,"",winprops);
}

// Switch Menu for the resources box - Simple Machine, Inc. Code
function switchMenu(obj) {
  var el = document.getElementById(obj);
  if(el.style.display != "block") {
    el.style.display = "block";
  }
  else {
    el.style.display = "none";
  }
}

//  confirm submit - Simple Machine, Inc. Code
function confirmSubmit() {
	var agree=confirm("Are you sure you wish to continue?");
	if (agree)
		return true;
	else
		return false;
	}


//-->
