var windowHandle = null;

function openPlayerWindow() {
    windowHandle = window.open( '',"wimpy_player",'width=233,height=31' );
    if (!windowHandle) 
    {
      alert('You have a popup blocker enabled. Please allow popups for templesf.com and reload the page');
    }

    if (windowHandle.location && windowHandle.location.href.indexOf('/show_wimpy_player') == -1) windowHandle.location.href = '/show_wimpy_player';
}


jQuery(document).ready(function(){
       if(window.closed == false)
        {
            openPlayerWindow();
        }
      // window.open( '/show_wimpy_player',"wimpy_player",'width=233,height=31' );
});

