<!--
function showHideDiv(divId) {
 var x = getObj2(divId);
 if ( (x) && (x.style) ) {
  var curVal = String(x.style.display);
  x.style.display = curVal == 'block' ? 'none' : 'block';
  
 }
 return void(0);
}

function getObj2(divId) {
 if (document.getElementById) return document.getElementById(divId) ? document.getElementById(divId) : false;
 if (document.all) return document.all[divId] ? document.all[divId] : false;
 return false;
}

function popstatic(wname,url,h,w)
{
	var newwindow;
	newwindow=window.open(url,wname,'height='+h+',width='+w+',left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}


function showTable(url)
{
	var newwindow;
	newwindow=window.open(url,"new",'');
	if (window.focus) {newwindow.focus()}
}



