// opend new java-sized window


function ftnOpenPopup(name, height, width)
  {
  openPage = ROOT+"/"+name;
  
  window.open(openPage, "_blank", "dependent=yes,Width="+width+",Height="+height+",location=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no");
  }

function ftnOpenPopup_url(name, height, width)
  {
  openPage = name;
  
  window.open(openPage, "_blank", "dependent=yes,Width="+width+",Height="+height+",location=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no");
  }
  
// resize popup window to fit image from file
function PopupPicFile(picUrl) 
	{ 
     window.open( ROOT+"/popup_pic.php?"+picUrl, "", "resizable=1,HEIGHT=300,WIDTH=500"); 
  	} 
function PopupPic(sec, id) 
	{ 
     window.open( ROOT+"/popup_pic.php?sec="+sec+"&id="+id, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
  	} 
