<!-- 
// if user clicks links in player window
function getPage(url) {
	// single play with opener present
	if (window.opener && !window.opener.closed) { 
		opener.location.href = url;
		opener.focus(); 
	}
	// multi-play with opener present
	else if (top.window.opener && !top.window.opener.closed) {
		top.opener.location.href = url; 
		top.opener.focus();
	}
	else	{
		newwindow = window.open(url,'newwindow');
		newwindow.focus();
	}
	self.focus();
}
//--> 

function clipboard(text) {
	text.focus();
	text.select();
	if (window.clipboardData) window.clipboardData.setData('text', text.value);
}
