// System - Player controls
function launchplayer(url, text) { window.parent.frames[1].document.mp3player.SetVariable('my_bitrate',128); window.parent.frames[1].document.mp3player.SetVariable('url',url); window.parent.frames[1].document.getElementById('playtext').innerHTML=text; }
function launchplayerv2(url, text) { if(text.length>90) text=text.substring(0,90)+'...'; parent.window.document.dpplayer.SetVariable('ptext',text); parent.window.document.dpplayer.SetVariable('plocation',url); }
function playradioshow(text) { parent.window.document.dpplayer.SetVariable('ptext','DanceDP Radio #' + text); parent.window.document.dpplayer.SetVariable('plocation','./listenchapter.php?id=' + text); }

// System - Window Open Files Views

function openwindow(url) { window.open(url,'docw',"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=520,height=420"); }
function openpress(id) { window.open("pressreader.php?id=" + id,'press',"left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=680,height=700"); }
function showtk(id) { window.open("tracklist.php?id=" + id,'tklist',"left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=480,height=700"); }
function showshoutout() { window.open("shoutout.html",'shout',"left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=480,height=480"); }
function launchwebshop() { var ventana=window.open("http://dancedp.trackitdown.net",'webshop',"left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=850,height=700"); if( (ventana && ventana.closed) || !ventana ) { window.alert("Your pop-up blocker is activated. Please ensure that you allow pop-ups for this website before proceed.\nThank you."); } }
function showdistrlist() { window.open("distrlist.html",'distrlist',"left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=480,height=670"); }

// System - Show/Hide news
var openednew=0;
function shownew(nr) { if(openednew!=0) document.getElementById('new'+openednew).style.display='none'; document.getElementById('new'+nr).style.display='block'; openednew=nr; }

// System - Mailing system
function sendmlist(dpmail,dpaction) { document.getElementById('mlistdpl').src='about:blank'; document.getElementById('mlistdpl').src='./sendmps.php?mlistdp=' + dpmail + '&mlistdpact=' + dpaction; }

// IE fixes - PNG Alpha Transparency Images Fix

var isMSIE55 = (window.showModalDialog && window.clipboardData && window.createPopup);
var doneIEAlphaFix;

function fixalpha()
{
	if(isMSIE55 && !doneIEAlphaFix)
	{
		var plogo = document.getElementById('p-logo');
		if(!plogo) return;
		var plogoim = document.getElementById('p-logoim');
		if(!plogoim) return;

		// Eliminar imagen de la capa
		plogo.innerHTML='&nbsp;';

		// Extraer archivo de imagen
		var imageUrl = './img/main/fc-designed.png';

		if(imageUrl.substr(imageUrl.length-4).toLowerCase() == '.png')
		{
			var logospan = plogo.appendChild(document.createElement('span'));

			logospan.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + imageUrl + ')';
			logospan.style.height = '100%';
			logospan.style.position = 'absolute';
			logospan.style.width = 139;

			logospan.style.setExpression('marginLeft', '"-139px"');
			logospan.style.setExpression('marginTop', '"0px"');
		}

		doneIEAlphaFix = true;
	}

	else document.getElementById('p-logoim').src='./img/main/fc-designed.png';
}

