function openVideo(name, width, height) {
	var temp = window.open(name,'videowin','width='+width+',height='+height);
	temp.focus();
}

function videoPop(name) {
	var temp = window.open(name+'.swf','videowin','width=240,height=180');
	temp.focus();
}

var popListenOb;
var popListenLaterOb;

function popListenNow( f ) {
	popListenOb = window.open('../pop/listennow/' + f + '.html', 'listenpop' ,'width=450,height=140,scrollbars=1,resizable=1');
	popListenOb.focus();
}

function popListenLater( f ) {
	popListenLaterOb = window.open('../pop/listenlater/' + f + '.html', 'listenLaterpop' ,'width=460,height=300,scrollbars=1,resizable=1');
	popListenLaterOb.focus();
}