﻿
function popup(location, popupWidth, popupHeight, resizable) 
{
    NewWindow = window.open( location  , "myWindow", "status = 1, height = " + popupHeight + ", width = " + popupWidth + ", resizable = " + resizable + ", scrollbars = 1");
    NewWindow.focus();
}

