// JavaScript Document
function toggle_view(divElem, linkElem) {
	divElem.style.display = "block";
	linkElem.style.display = "none";
}

/**
 * function: loadInParent => used in pop-up windows to change the url of a parent window
 *
 * @param: (string) url => the url the parent window links to
 * @return: nothing
 */
function loadInParent(url) {
	self.opener.location = url;
}
