/* The OpenPopupWindow function opens a secondary browser window to display additional information, displaying the URL file and the windowfeatures passed to the function*/


function OpenPopupWindow(URL, windowFeatures)
{
    popupWindow = window.open(URL,"PopupWindow",windowFeatures);
}


  