<!-- 
var myWindow; 
    
function OpenViewPopup(url) 
{    
   var width = 520; 
   var height = 380; 
   var xPos = (screen.width-width)/1.2; 
   var yPos = (screen.height-height)/8; 

   var toolOptions = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,'; 
   var windowPosOptions = 'width='+width+',height='+height+',left='+xPos+',top='+yPos 

   myWindow=window.open(url,'MyWindow',toolOptions+','+windowPosOptions); 
   myWindow.focus(); //This will bring the current window on to top.. 
} 
    
//--> 

