// JavaScript Document
function ascoltamp3(titolo,audio) {
	msg=open("","schermo","toolbar=no,directories=no,menubar=no,resizable=no");
	var nav=navigator.appName;
	if(nav=="Netscape")
	var ns=true;

	// resize POP UP
	var w=334;
	var h=180;
	msg.resizeTo(w,h);

	// centro POPUP
	if(screen.width<2*screen.height)
	{
		var xpos=(screen.width/2)-(w/2);
	}else{
		var xpos=(screen.width/4)-(w/2);
	}

	var ypos=(screen.hight/2)-(h/2);
	msg.moveTo(xpos,ypos);

	msg.document.write("<HEAD>");
	msg.document.write("<TITLE>Ascolta</title>");
	msg.document.write("<meta name=\"Copyright\" content=\"2005\"><meta name=\"Author\" content=\"Robyquin\">");
	msg.document.write("<link href=\"general.css\" rel=\"stylesheet\" type=\"text/css\">");
	msg.document.write("</head>");
	msg.document.write("<BODY class='mp3'>");
	msg.document.write("<center>");
	msg.document.write("<table border=0 cellspacing=0 class=\"mp3\">");
	msg.document.write("<tr  class=\"mp3\">");
	msg.document.write("<td  class=\"mp3\">");
	msg.document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"  WIDTH=\"200\" HEIGHT=\"100\" id=\"mp3\" ALIGN=\"\">");
	msg.document.write("<PARAM NAME=movie VALUE=\"mp3.swf?title="+titolo+"&mp3="+audio+"\">");
	msg.document.write("<PARAM NAME=quality VALUE=high>");
	msg.document.write("<PARAM NAME=bgcolor VALUE=#000000>");
	msg.document.write("<EMBED src=\"mp3.swf?title="+titolo+"&mp3="+audio+"\" quality=high bgcolor=#000000  WIDTH=\"200\" HEIGHT=\"100\" NAME=\"mp3\" ALIGN=\"\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"></EMBED>");
	msg.document.write("</OBJECT>");
	msg.document.write("</td>");
	msg.document.write("</tr>");
	msg.document.write("</table>");
	msg.document.write("</center>");
	msg.document.write("</BODY>");
	msg.document.write("</html>");
	msg.document.close();
}

function ascoltaalbum(titolo,audio,user) {
	msg=open("","schermo","toolbar=no,directories=no,menubar=no,resizable=no");
	var nav=navigator.appName;
	if(nav=="Netscape")
	var ns=true;

	// resize POP UP
	var w=334;
	var h=180;
	msg.resizeTo(w,h);

	// centro POPUP
	if(screen.width<2*screen.height)
	{
		var xpos=(screen.width/2)-(w/2);
	}else{
		var xpos=(screen.width/4)-(w/2);
	}

	var ypos=(screen.hight/2)-(h/2);
	msg.moveTo(xpos,ypos);

	msg.document.write("<HEAD>");
	msg.document.write("<TITLE>Ascolta</title>");
	msg.document.write("<meta name=\"Copyright\" content=\"2005\"><meta name=\"Author\" content=\"Robyquin\">");
	msg.document.write("<link href=\"general.css\" rel=\"stylesheet\" type=\"text/css\">");
	msg.document.write("</head>");
	msg.document.write("<BODY class='mp3'>");
	msg.document.write("<center>");
	msg.document.write("<table border=0 cellspacing=0 class=\"mp3\">");
	msg.document.write("<tr  class=\"mp3\">");
	msg.document.write("<td  class=\"mp3\">");
	msg.document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"  WIDTH=\"200\" HEIGHT=\"100\" id=\"mp3\" ALIGN=\"\">");
	msg.document.write("<PARAM NAME=movie VALUE=\"mp3.swf?title="+titolo+"&user="+user+"&mp3="+audio+"\">");
	msg.document.write("<PARAM NAME=quality VALUE=high>");
	msg.document.write("<PARAM NAME=bgcolor VALUE=#000000>");
	msg.document.write("<EMBED src=\"mp3.swf?title="+titolo+"&user="+user+"&mp3="+audio+"\" quality=high bgcolor=#000000  WIDTH=\"200\" HEIGHT=\"100\" NAME=\"mp3\" ALIGN=\"\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"></EMBED>");
	msg.document.write("</OBJECT>");
	msg.document.write("</td>");
	msg.document.write("</tr>");
	msg.document.write("</table>");
	msg.document.write("</center>");
	msg.document.write("</BODY>");
	msg.document.write("</html>");
	msg.document.close();
}
