//-----------------------------------------------------------------------------//
//- Generic JavaScript functions to be used at MBSelect.com                   -//
//- MCB 10JUN2011                                                             -//
//-----------------------------------------------------------------------------//

function OpenExtraPage(A_URL, A_Width, A_Height)
  { if ((A_URL == "") || (A_URL == null)) { return; }   // If no URL we're done; nothing to do. //
    var L_Features = ""                           // Default feature string to be empty. //
    if (A_Width != null)                          { L_Features = L_Features + "width=" + A_Width }
    if ((A_Height != null) && (L_Features == "")) { L_Features = L_Features + "height=" + A_Height }
    if ((A_Height != null) && (L_Features != "")) { L_Features = L_Features + ",height=" + A_Height }
    if (L_Features != "")                         { L_Features = L_Features + ",location=1,scrollbars=1,resizable=1" }
    
    var L_RandomeNum = Math.floor(Math.random()*1001)
    if (L_Features != "") { window.open(A_URL, ("MyWindow" + L_RandomeNum), L_Features); }
    if (L_Features == "") { window.open(A_URL, ("MyWindow" + L_RandomeNum)); }
    return; }



