// Chaotic Music Technologies JavaScript Document

function openSound(name)
{
	var mmWindow = open('','','width=340, height=120,scrollbars=no,location=0,status=0, top=300,left=300');
	mmWindow.document.open();
	mmWindow.document.write('<html><head><title>Chaotic Music Technologies</title></head>');
    mmWindow.document.write('<body style="MARGIN: 0px;">');
	mmWindow.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,65,0" width="340" height="120" id="stopandplay" align="middle">');
	mmWindow.document.write('<param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="data/media/cmtplayer.swf?urlFile='+name+'" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="#007799" />');
	mmWindow.document.write('<embed src="data/media/cmtplayer.swf?urlFile='+name+'" menu="false" quality="high" bgcolor="#007799" width="340" height="120" name="stopandplay" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	mmWindow.document.write('</object>');
	mmWindow.document.write('</body></html>');
	mmWindow.document.close();
}

function validEmail(textField)
{
	var s = textField.value;
	var filter=/^[A-Za-z][A-Za-z0-9_.]*@[A-Za-z0-9_]+\.[A-Za-z0-9_.]+[A-za-z]$/;
	if (filter.test(s))
		return true;
	else 
		alert("Direccion electronica incorrecta.");
	textField.focus();
	return false;
}

function checkInputContact()
{
	if (document.contactForm.userName.value=='' || 
       document.contactForm.msgText.value=='')
	   {
	     alert('Debe introducir todos los datos.');
		 return false;
	   }
	if (!validEmail(document.contactForm.email))
		return false;	  
	document.contactForm.submit();
    return true
}

function writeSoundPlayer(snd)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,65,0" width="120" height="30" id="dloadplayer">');
    document.write('<param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="descargas/dloadplayer.swf?urlFile='+snd+'" />');
	document.write('<param name="menu" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="#007799" />');
	document.write('<embed src="descargas/dloadplayer.swf?urlFile='+snd+'" menu="false" quality="high" bgcolor="#007799" width="120" height="30" name="dloadplayer" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}

function writeVideoPlayer(vid)
{
	document.write('<object width="425" height="350">');
    document.write('<param name="movie" value="'+vid+'"></param><param name="wmode" value="transparent"></param>');
	document.write('<embed src="'+vid+'" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">');
	document.write('</embed></object>');
}

function writeCMTThemePlayer(swfFile)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="150" height="20" id="cmt-theme" align="middle">');
    document.write('<param name="movie" value="data/media/'+swfFile+'.swf?urlFile=cmt-theme" />');
	document.write('<param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />');
	document.write('<embed src="data/media/'+swfFile+'.swf?urlFile=cmt-theme" quality="high" bgcolor="#ffffff" width="150" height="20" name="cmt-theme" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}

function writeEQimage()
{
	if (Math.random() <= 0.5)
	{
		document.write('<a href="http://www.eqfuentes.com/"><img src="data/images/eqftplayer.jpg" alt="El Technoplayer seg&uacute;n EQFuentes." title="El Technoplayer seg&uacute;n EQFuentes." width="300" height="383" border="0"></a>');
	}
	else
	{
		document.write('<a href="http://www.eqfuentes.com/"><img src="data/images/eqfradiokaos.gif" alt="Radio-KAOS.NET seg&uacute;n EQFuentes." title="Radio-KAOS.NET seg&uacute;n EQFuentes." width="300" height="372" border="0"></a>');
	}
}
