/*---- CREATE POP UP WINDOW ----*/

function popUp (page, width, height) {
  var baseURL = "http://" + location.hostname + "/";
  var file = baseURL + page;
  var pop = window.open(file, "pop", "width=" + width + ",height=" + height + ",resizable=yes,status=no,toolbar=no,scrollbars=no");
  pop.focus();
}


/*---- CLICK TO SHOW, CLICK TO HIDE PAGE ELEMENT ----*/

function toggleVisibility(elementID) {
	leftVal = document.getElementById(elementID).style.left;
	if (leftVal == "auto"){
		document.getElementById(elementID).style.left = "-999px";
	}
	else {
		document.getElementById(elementID).style.left = "auto";
	}
}