function openExternalWindow(url,width,height)
{
    var windowName = "newWindow";
    
    var windowFeatures = "height=" + height + 
                         ",width=" + width +
                         ",location=no" + 
                         ",menubar=no" + 
                         ",directories=no" + 
                         ",toolbar=no" + 
                         ",status=no" + 
                         ",statusbar=no" + 
                         ",personalbar=no" + 
                         ",resizable=yes" + 
                         ",scrollbars=yes" + 
                         ",dependent=yes"

    window.open(url,windowName,windowFeatures);
}// end openExternalWindow()
