// JavaScript Document

// POPUP WINDOW SETTINGS
function popupWindow(url,description,width,height) {
    swidth = ((screen.availWidth/2)-(width/2));
    sheight = ((screen.availHeight/2)-(height/2));
    newWindow = window.open(url,description,"width="+ width +",height="+ height +",screenY="+ sheight +",screenX="+ swidth +",top=" + sheight + ",left=" + swidth + ",resizeable=no,scrollbars=yes,toolbar=no,status=yes,menubar=no,location=no");
    newWindow.focus();
}