// JavaScript Document
<!--
function dropDown(id) {
	var el = document.getElementById(id);
	if(el.style.display=="none") 
		el.style.display="block";
	else el.style.display="none";
}

function popup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function confirmation(question) {
	var answer = confirm(question)
	if (answer){
		return true;
	}
	else return false;
}

function showHide(id) {
	var elem = document.getElementById(id);
	if(elem.style.display == "none") 
		elem.style.display = "block";
	else elem.style.display = "none";
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
-->
