<!--
function ToggleCUTabs(strShowDiv, strHideDiv){//Prototype
	//parse arrays
	var aryShowDiv = strShowDiv.split(",");
	var aryHideDiv = strHideDiv.split(",");
	
	//loops through array
	for(i = 0; i < aryShowDiv.length; i++){
		ShowDiv(aryShowDiv[i]);
	}
	
	//loops through array
	for(j = 0; j < aryHideDiv.length; j++){
		HideDiv(aryHideDiv[j]);
	}
	
}

function ShowDiv(strDivName){//Prototype
	document.all[strDivName].style.display = "block"
}

function HideDiv(strDivName){//Prototype
	document.all[strDivName].style.display = "none"
}

function ShowTable(strDivName) {//Prototype
	var colDivs = document.getElementsByTagName("DIV");
	var intIndex;

	for (var i = 1; i < colDivs.length; i++)
		if (colDivs[i].id != "SearchButton"){
			colDivs[i].style.display = (colDivs[i].id == strDivName) ? "block" : "none";	
			}
	
}

function ToggleShowTable(strDivName) {//Prototype
	
 if (document.all[strDivName].style.display == "none"){
     document.all[strDivName].style.display = "block"}
 else{
   	 document.all[strDivName].style.display = "none"
 }
}

//-->
