
function popUp(sSrc) {
	var newWin = window.open(sSrc,"popUp","scrolling=0,width=300,height=200");
	newWin.self.focus();
}


function openMp3(id) {
	// Set properties for the window created

	var sSrc	= "mp3player.php?id=" + id;
	//alert (sSrc);
	var windowX = 0;
	var windowY = 0;
	var width 	= 300;
	var height 	= 150;
	var sFeatures	= "status=1,location=0,resizable=0,scrollbars=0";
	
	openWindowCentered(sSrc,"mp3player",windowX,windowY,width,height,sFeatures);
}