function play(){
window.open('http://radiotime.com/WebTuner.aspx?StationId=31347', 'Player', 'left=200,op=200,height=400,width=490,scrollbars=no,resizable=no,toolbar=no,screenX=0,screenY=0,status=no');
}

function showMyVideos(data) {
	var feed = data.feed;
	var entries = feed.entry || [];
	var html = [];
	for (var i = 0; i < entries.length; i++) {
		// Parse out YouTube entry data
		var entry = entries[i];
		var title = entry.title.$t;
		var playerUrl = entries[i].media$group.media$content[0].url;
		html.push( "<h4>", title, "</h4>\n",
		           "<object width='620' height='390'><param name='movie' value='" , playerUrl , "&hl=en&fx=1&'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='" , playerUrl , "&hl=en&fs=1&' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='620' height='390'></embed></object><br><br>" );
		}
	document.getElementById('videos').innerHTML = html.join('');
	}

function popUp(URL) {
	
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=400,left = 440,top = 184');");
	
} 
