﻿function popup(url, height, width, resizable, scrollbars) {
    window.open( url, "myWindow", 
    "status = 1, height = " + height + ", width = " + width + ", resizable = " + resizable  + ", scrollbars = " + scrollbars);
}
