// JavaScript Document
function loadPage(list) {
  location.href=list.options[list.selectedIndex].value
  //window.open(list.options[list.selectedIndex].value, "NEW")
}

function winopen(theURL,winname,features) { 
    window.open(theURL,winname,features)
}

function showHide(ctrl){
	if(document.getElementById(ctrl).style.display == "none"){ document.getElementById(ctrl).style.display = ""; }
	else{ document.getElementById(ctrl).style.display = "none"; }
}
