
function aWindow(x,y) {
    var URL = x;
    var windowName = y;
    var features =
        'width=750'        + 
        ',height=350'      + 
        ',directories=no'  + 
        ',location=no'     + 
        ',scrollbars=yes'  +
        ',menubar=no'      + 
        ',status=no'       +
        ',toolbar=no'      + 
        ',resizable=yes';


    newWindow = window.open (URL, windowName, features);
    newWindow.focus();

}


