// JavaScript Document
function showPopup(url) { 
newwindow=window.open(url,'name','height=300,width=900,top=200,left=300,resizable'); 
if (window.focus) {newwindow.focus()} 
} 