function toggleDetail(a) {
        	if (document.getElementById) {
        		document.getElementById("dtl"+a).style.display=(document.getElementById("dtl"+a).style.display=="block")?"none":"block"
        		return false;
        	} else {
        		return true;
        	}
        }
        
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}