// page should have a javascript check for people who have javascript turned off!

function swapImages(name,state) {

	if (document.images)
	{
		document.images[name].src = eval(name + "_" + state +".src");
	}
}

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

	var sSrc	= "mp3/player.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);
}