function popUp(playerNo)
{ 
var htmlStart = "<html><head><title>Danicico.ro's MP3 Player<" + "</title><" + "/head><body style=\"margin: 0; padding: 0;\">";
var htmlEnd = "<" + "/body><"+"/html>";

var playerMyFav = "<object type=\"application" +"/x-shockwave-flash\" data=\"http:" + "/" + "/assets.myflashfetish.com" + "/swf" + "/mp3" + "/mixpod.swf\" height=\"311\" width=\"410\" style=\"width:410px;height:311px\"><param name=\"movie\" value=\"http:" + "/" + "/assets.myflashfetish.com" + "/swf" + "/mp3" + "/mixpod.swf" + "/><param name=\"quality\" value=\"high\" " + "/><param name=\"scale\" value=\"noscale\" " + "/><param name=\"salign\" value=\"TL\" " + "/><param name=\"wmode\" value=\"transparent\" " + "/><param name=\"flashvars\" value=\"myid=43596037&amp;path=2010 " + "/02" + "/07&amp;mycolor=262626&amp;mycolor2=ffaa00&amp;mycolor3=ffffff&amp;autoplay=false&amp;rand=0&amp;f=4&amp;vol=75&amp;pat=0&amp;grad=false&amp;ow=410&amp;oh=311\" " + "/><" + "/object>";
var playerUKTop = "<object type=\"application" +"/x-shockwave-flash\" data=\"http:" + "/" + "/assets.myflashfetish.com" + "/swf" + "/mp3" + "/mixpod.swf\" height=\"311\" width=\"410\" style=\"width:410px;height:311px\"><param name=\"movie\" value=\"http:" + "/" + "/assets.myflashfetish.com" + "/swf" + "/mp3" + "/mixpod.swf" + "/><param name=\"quality\" value=\"high\" " + "/><param name=\"scale\" value=\"noscale\" " + "/><param name=\"salign\" value=\"TL\" " + "/><param name=\"wmode\" value=\"transparent\" " + "/><param name=\"flashvars\" value=\"myid=43841491&amp;path=2010 " + "/02" + "/10&amp;mycolor=262626&amp;mycolor2=ffaa00&amp;mycolor3=ffffff&amp;autoplay=false&amp;rand=0&amp;f=4&amp;vol=75&amp;pat=0&amp;grad=false&amp;ow=410&amp;oh=311\" " + "/><" + "/object>";
var playerLove = "<embed src=\"http:" + "/" + "/assets.myflashfetish.com" +"/swf" +"/mp3" + "/mixpod.swf?myid=42928956&path=\" quality=\"high\" wmode=\"window\" bgcolor=\"\" flashvars=\"mycolor=&mycolor2=&mycolor3=&autoplay=false&rand=0&f=4&vol=95\" width=\"410\" height=\"311\" name=\"myflashfetish\" salign=\"TL\" type=\"application" + "/x-shockwave-flash\" pluginspage=\"http:" + "/" + "/www.macromedia.com" + "/go" + "/getflashplayer\" border=\"0\" style=\"visibility:visible;width:410px;height:311px;\" " + "/><" + "/embed>";
var playerRock = "<embed src=\"http:" + "/" + "/assets.myflashfetish.com" +"/swf" +"/mp3" + "/mixpod.swf?myid=42928953&path=\" quality=\"high\" wmode=\"window\" bgcolor=\"\" flashvars=\"mycolor=&mycolor2=&mycolor3=&autoplay=false&rand=0&f=4&vol=95\" width=\"410\" height=\"311\" name=\"myflashfetish\" salign=\"TL\" type=\"application" + "/x-shockwave-flash\" pluginspage=\"http:" + "/" + "/www.macromedia.com" + "/go" + "/getflashplayer\" border=\"0\" style=\"visibility:visible;width:410px;height:311px;\" " + "/><" + "/embed>";
var player;
var title;

switch(playerNo)
{
case 1: player = playerMyFav; title = "Danicico.ro - My Favorites - playlist"; break;
case 2: player = playerUKTop; title = "Danicico.ro - UK Top40 Singles - playlist"; break;
case 3: player = playerLove; title = "Danicico.ro - Love - playlist"; break;
case 4: player = playerRock; title = "Danicico.ro - Rock - playlist"; break;
default: player = playerMyFav;
}

var html = htmlStart + player + htmlEnd;

var frog = window.open("","vladMixPod","width=410,height=311,top=200,left=300,resizable=no,toolbar=no,directories=no,menubar=no,location=no,status=no,scrollbars=no,resizable=no");
 
frog.document.open();
frog.document.write(html);
frog.document.title = title;
frog.document.close(); 
};