function doPopup(URL,w,h){
		thisWindow = window.open(URL, "popWin", "toolbar=1, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=1, width=" + w + ", height= " + h);
}


function ShowOrHideLayer(thisLayer){
	if (document.getElementById(thisLayer).style.display == "none"){
		makeVisible(thisLayer);
	} else {
		makeInvisible(thisLayer)
	}
}
function makeVisible(thisLayer){
	document.getElementById(thisLayer).style.display = "block";;
}
function makeInvisible(thisLayer){
	document.getElementById(thisLayer).style.display = "none";;
}


function ShowOrHideClickedDiv(thisTag){
	if (thisTag.style.display == "none"){
		makeVisible(thisTag.id);
	} else {
		makeInvisible(thisTag.id)
	}
}
