function xPlayer(x, y) {
	var url = 'http://s199976350.onlinehome.us/player/external_player.php';
	if(x == 'event') {
		url = url + '?eventid=' + y;
	} else if(x == 'band') {
		url = url + '?bandid=' + y;
	}
	window.open(url, "xPlayer", "location=0, menubar=0, resizeable=0, scrollbars=0, width=300, height=200");
	
	return false;
}