function tecnoplayer(id,src) {
	var generator;
	var pagebody = '<html><head><style type="text/css"><!--\n'
				  +'body {background-color: #000; color: #fff;}\n--></style></head><body>';
	var styleclose = 'style="color: #f00;" ';
	
		generator=window.open('','Player','height=30,width=310');
		generator.document.write(pagebody);
		generator.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="290" height="40" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" >'
			+ '<param name="movie" value="modules/Podcasts/play/mp3player.swf" /> '
			+ '<param name="flashvars" value="file=' + src + '" /> '
			+ '<embed src="modules/Podcasts/play/mp3player.swf" width="290" height="40" flashvars="file=' + src + '&autostart=true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> '
			+'</object> '
			+ '<br><br><center><a href="http://www.tecnosoluciones.com" target="_blank"><img src="http://www.tecnosoluciones.com/images/tecno-soluciones.gif" alt="TecnoSoluciones.com ... Su Solución de Negocios en Internet" border="0"></a></center>'); 
	generator.document.write('</body></html>');
	generator.document.close();
}

function disableRightClick(e)
{
  var message = "Right click disabled";
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      //alert(message);
      return false;
    }
  }
  else
  {
    //alert(message);
    return false;
  }
} 

disableRightClick();
