<!--
var TIMEOUT;

function setPortalShowHide(id,x,state) {

 clearTimeout(TIMEOUT);
 MObj=document.getElementById(id);
 if (state=='show'){
    MObj.style.display='block';
 }
 else {
 	TIMEOUT=setTimeout('MObj.style.display=\'none\';',500);
 }
}


// -->