function showHide(divID) {
	if (document.getElementById) {
		obj = document.getElementById(divID);
		if (obj.style.display == "none") {
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
}

function justHide(divID) {
	if (document.getElementById) {
		obj = document.getElementById(divID);
		obj.style.display = "none";
	}
}

function justShow(divID) {
	if (document.getElementById) {
		obj = document.getElementById(divID);
		obj.style.display = "";
	}
}

function shine(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + 'bright.src');
	}
}

function shade(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + 'dull.src');
	}
}

function unipop(URL, widthPref, heightPref) {
	var Instant = new Date();
	var windowOptions = "width=" + widthPref + ",height=" + heightPref + ",directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes";
	unipopWindow = window.open(URL, "pop"+Instant.getFullYear()+Instant.getMonth()+Instant.getDay()+Instant.getHours()+Instant.getMinutes()+Instant.getSeconds(), windowOptions);
}


