// JavaScript Document

function loadPlayer()
{
var sURL = "http://www.canopyradio.com/canopy/player/"; //(use this option if the script is in another file and you don't want people to see player location from 'View Source'
var iLeft=80;
var iTop=80;
var iHeight = 450;
var iWidth = 760;
var sOptions = "scrollbars=no,toolbar=no,status=no,location=no,menubar=no,height="+iHeight+",width="+iWidth+",resizable=no,top=" + iTop+ ",left=" + iLeft; 

var win = window.open(sURL,"PlayerWin",sOptions,true);
win.focus();
}


