function cargar(nombre_pelicula){
	html_aux = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="980" height="550" id="novias" align="middle">';
	html_aux += '<param name="allowScriptAccess" value="sameDomain" />';
	html_aux += '<param name="movie" value="'+nombre_pelicula+'.swf" />';
	html_aux += '<param name="quality" value="high" />';
	html_aux += '<param name="bgcolor" value="#A50827" />';
	html_aux += '<embed src="'+nombre_pelicula+'.swf" quality="high" bgcolor="#ffffff" width="980" height="550" name="'+nombre_pelicula+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	html_aux += '</object>';
	
	document.getElementById('pelicula').innerHTML=html_aux;
}


   //Disable right click script III- By Renigade (renigade@mediaone.net) 
   //For full source code, visit [url]http://www.dynamicdrive.com[/url] 
   var message = ""; 

   function clickIE(){ 
    if (document.all){ 
     (message); 
     return false; 
    } 
   } 

   function clickNS(e){ 
    if (document.layers || (document.getElementById && !document.all)){ 
     if (e.which == 2 || e.which == 3){ 
      (message); 
      return false; 
     } 
    } 
   } 

   if (document.layers){ 
    document.captureEvents(Event.MOUSEDOWN); 
    document.onmousedown = clickNS; 
   } else { 
    document.onmouseup = clickNS; 
    document.oncontextmenu = clickIE; 
   } 
   document.oncontextmenu = new Function("return false") 
