$(document).ready(function(){

var windowObjectReference = null;

    $('#popupplayer').click(function(){ 
 
    	if(windowObjectReference == null || windowObjectReference.closed)
    	{
    		windowObjectReference =  window.open('','PopupPlayerWindow','width=310,height=578,left=0px,top=160,menubar=no,titlebar=no,status=no,dependent=yes,resizable=yes,personalbar=no,toolbar=no,titlebar=no'); 
    		var html = '<html><head><title>Pulse Player</title><link rel="stylesheet" type="text/css" href="http://www.lsesu.com/stylesheet/lse/popup.css"></link></head><body><p><a href="javascript:window.close();">CLOSE (Stop listening)</a></p><p>You are listening live to Pulse Radio, the official radio station of the LSESU. Check out our podcasts, music reviews and much more at <a href="http://www.pulse.dj">www.pulse.dj</a></p><div id="outerframe"><iframe src="http://www.houghtonstreetfactual.co.uk/live.htm" id="pulseplayerframe" scrolling=no></iframe></div><p><a id="macuser" href="http://www.pulse.dj/mac-user/" target="_blank">Mac user? We still love you. Load Pulse onto your iTunes</a></p></body></html>'; 
    		windowObjectReference.document.open(); 
    		windowObjectReference.document.write(html); 
    		windowObjectReference.document.close(); 
    	}
   	 else
   	 {
		windowObjectReference.focus();
    	}
    	return false; 
 
    }); 
});

