function jukeError(error) {
	alert('The file you are trying to view cannot be played for the following reason(s):\n'+error);
}

function jukeBox(code,track,type) {
	url='http://jukebox.africanmusicmall.com/?code='+code+'&track='+track+'&type='+type;
	jLeft=(screen.width-320)/2;
	jTop=(screen.height-310)/2;
	jukebox=window.open(url,'_blank','width=320,height=310,resize=no,toolbar=no,top='+jTop+',left='+jLeft);
	jukebox.focus();
}

function jukeBoxDeBug(code,track,type) {
	url='http://jukebox.africanmusicmall.com/?code='+code+'&track='+track+'&type='+type+'&mode=debug';
	jLeft=(screen.width-320)/2;
	jTop=(screen.height-310)/2;
	jukebox=window.open(url,'_blank','width=320,height=310,resize=no,toolbar=no,top='+jTop+',left='+jLeft);
	jukebox.focus();
}

function reDux(width,height) {
	wLeft=(screen.width-width)/2;
	wTop=(screen.height-height)/2;
	window.resizeTo(width,height);
	window.moveTo(wLeft,wTop);
}

