function launchMp3()
{
	if(!width) var width = 250;
	if(!height) var height = 250;

	window.open(
		'index.php?file=Mp3&nuked_nude=index&op=player',
		'Mp3',
		'toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=1,copyhistory=0,menuBar=0,width=' + (width + 20) + ',height=' + (height + 20) + ',top=' + ((typeof window.screenTop == 'number') ? (window.screenTop + 10) : (window.screen.availHeight - window.innerHeight - 8)) + ',left=' + (window.screen.availWidth - (width + 68))
	);
}

function showMp3(width, height, path, id)
{
	var code = '<object type="application/x-shockwave-flash" data="' + path + '.swf" width="' + width + '" height="' + height + '">\n'
	+ '  <param name="movie" value="' + path + '.swf" />\n'
	+ '  <param name="quality" value="best" />\n'
	+ '  <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" />\n'
	+ '  <param name="flashvars" value="" />\n'
	+ '  <param name="scale" value="exactfit" />\n'
	+ '  <param name="menu" value="false" />\n'
	+ '  <param name="wmode" value="transparent" />\n'
	+ '  <param name="bgcolor" value="transparent" />\n'
	+ '</object>\n';

	document.getElementById(id).innerHTML = code;
}