// JavaScript Document

<!-- POP
function pop(sLink,iWidth,iHeight,name,menubar,toolbar,location,status,scrollbars,resizable)
{
 left=0;
 G_day = new Date();
 G_seed = G_day.getTime();
 iRand = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*100000 + 1,10);
 iRand=name;
 winleft = ((screen.width - iWidth) / 2)-left;
 winUp = (screen.height - iHeight) / 2;
 
 window.open(sLink,iRand,',width='+iWidth+',height='+iHeight+',left='+winleft+',top='+winUp+',menubar='+menubar+',toolbar='+toolbar+',location='+location+',status='+status+',scrollbars='+scrollbars+',resizable='+resizable);
}

function displayControl(id) // show/hide the control
{
  var ref = document.getElementById("ref"+id);	// title bar 
  var elm = document.getElementById("div"+id);	// content 
  
  if (elm.style.display == '') { // hide
    elm.style.display = 'none';
  }
  else {                         // show
    elm.style.display = '';
  }     
}



//-->


