// opend new java-sized window

 // resize popup window to fit image FROM DB
function PopupPicInvest(invest_id, id) 
	{ 
     window.open( ROOT+"/popup_invest.php?invest_id="+invest_id+"&id="+id, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
  	} 
 function PopupPicPartner(partner_id, id) 
	{ 
     window.open( ROOT+"/popup_partner.php?partner_id="+partner_id+"&id="+id, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
  	}  	
 function PopupPicNews(article_id, id) 
	{ 
     window.open( ROOT+"/popup_news.php?article_id="+article_id+"&id="+id, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
  	}  	
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");
  }
  
// resize popup window to fit image from file
function PopupPicFile(picUrl) 
	{ 
     window.open( ROOT+"/popup_pic.php?"+picUrl, "", "resizable=1,HEIGHT=100,WIDTH=100"); 
  	} 
  	
function PopupPic(sec, id) 
	{ 
     window.open( ROOT+"/popup_pic.php?sec="+sec+"&id="+id, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
  	} 