﻿
// Open A Popup Window...

function popupWindow(url, width, height)
{
    window.open(url, 'popup', 'width=' + width + ', height=' + height + ', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, copyhistory=no, resizable=yes, screenX=200, screenY=200');
}

