// JavaScript Document
<!-- 
if(screen){ 
topPos=0 
leftPos=0 
} 
function getPopup(URL,wt,ht){ 
leftPos= (screen.width-wt)/2 
topPos = (screen.height-ht)/2 
newWin = window.open(URL,'popup','toolbars=no, resizeable=no,scrollbars=yes,status=yes,left='+leftPos+',top='+topPos+',width='+wt+',height='+ht) 
} 
function getAkcijos(URL,wt,ht){ 
leftPos= (screen.width-wt)/2 
topPos = (screen.height-ht)/2 
newWin = window.open(URL,'akcijos','toolbars=no, resizeable=no,scrollbars=no,status=no,left='+leftPos+',top='+topPos+',width='+wt+',height='+ht) 
} 

function getBaidares( URL, wt, ht )
{ 
  leftPos= (screen.width-wt)/2 
  topPos = (screen.height-ht)/2 
  newWin = window.open(URL,'akcijos','toolbars=no, resizeable=no,scrollbars=no,status=no,left='+leftPos+',top='+topPos+',width='+wt+',height='+ht) 
} 

window.name="main";

// --> 