// JavaScript Document
function showPopup(url) {
newwindow=window.open(url,'name','height=650,width=780,top=20,left=20,resizable,scrollbars=yes,toolbar=yes');
if (window.focus) {newwindow.focus()}
}
