// JavaScript Document

function openWindow(url, width, height) { 
var winl = (screen.width-width)/2;
var wint = (screen.height-height)/2;
popupWin = window.open(url, 'openWin', "width="+width+", height="+height+", top="+wint+", left="+winl+", scrollbars=no"); 
}