 

function pgNav(pageLoc) 
	
	{
	  if (browser.isIE) {
	  	strCaller = event.srcElement.id;											 
		keyObj = eval("document.all." + strCaller);									
		if (keyObj.style.display == "inline") {
			keyObj.style.display = "none";
	  		}
		else
			{
	  		window.location = pageLoc;
	  		}
		}
	}
