/******************************************************************************
* jacksonsharks.js                                                            *
*                                                                             *
* ******************************************************************************/

//*****************************************************************************
// Open pop up window
//*****************************************************************************

//opens a popup window with specified params for the File to open,  The name of the new window, and the attributes of it.
function OpenPopup(strFile, strWinName, strAttribs)
{
window.open(strFile, strWinName, strAttribs);

}




