function traspasar_codigo() {
			document.getElementById('Cuerpo').innerHTML = window.frames['v1'].document.getElementsByTagName('body')[0].innerHTML;
}
function AbreVentana (URL,titulo){
   open(URL,"","width=800,height=600,resizable=yes,scrollbars=yes")
}
function AbreVentanaConTitulo (URL,titulo){
   open(URL,titulo,"width=800,height=600,resizable=yes,scrollbars=yes")
}

IMG01 = "Imagenes/vineta-on.gif"  //image when mouse is over the link
IMG02 = "Imagenes/vineta-off.gif" //image when mouse isn't over the link

function imgover(imgname){
     imgname.src = IMG01
}

function imgout(imgname){
     imgname.src = IMG02
}
IMG1 = "Imagenes/on.gif"  //image when mouse is over the link
IMG2 = "Imagenes/off.gif" //image when mouse isn't over the link

function imgencima(imgnombre){
     imgnombre.src = IMG1
}

function imgfuera(imgnombre){
     imgnombre.src = IMG2
}
/*****************************************************************************
Pop-up ajustada a foto. 
http://javascript.tunait.com/
******************************************************************************/

var titulopordefecto = "Perico de los palotes"; //Si no se especifica un título al llamar a la función colocará el que se especifique aquí
var ventana;
var cont=0;

function afoto(cual,titulo)
{
if(cont==1){ventana.close();ventana=null}
if(titulo==null){titulo=titulopordefecto}
ventana=window.open('','ventana','resizable=yes,scrollbars=no')
ventana.document.write('<html><head><title>' + titulo + '</title></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><center><table height="100%"><tr valign="middle"> <td><center><img src="' + cual + '" onLoad="opener.redimensionar(this.width+20, this.height+43)"></td></tr></table>');
ventana.document.close();
cont++;
}
function redimensionar(ancho, alto)
{
ventana.resizeTo(ancho+12,alto+28);
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2); //centra la ventana. Eliminar si no se quiere centrar el popup
}

/Oculta capa mientras la carga/
		function muestraGranDiv(){
			document.getElementById('cargando').style.display = "none";
			document.getElementById('externa').style.visibility = "visible";
			document.getElementById('externa').style.display = "block";

			/*document.getElementById('cargando').style.visibility = "hidden";*/
			}
/Oculta capa mientras la carga/
		function muestracargando(){
			dofade=false;
			document.getElementById('Cuerpo').innerHTML =str_cargando;

			}

/***********************************************
* Dynamic Ajax Content- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
* Las instrucciones estan en http://www.dynamicdrive.com/dynamicindex17/ajaxcontent.htm
***********************************************/

var loadedobjects=""
var rootdomain="http://"+window.location.hostname

function ajaxpage(url, containerid){
var page_request = false
if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject("Msxml2.XMLHTTP")
} 
catch (e){
try{
page_request = new ActiveXObject("Microsoft.XMLHTTP")
}
catch (e){}
}
}
else
return false
page_request.onreadystatechange=function(){
loadpage(page_request, containerid)
}
page_request.open('GET', url, true)
page_request.send(null)
}

function loadpage(page_request, containerid){
if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1))
document.getElementById(containerid).innerHTML=page_request.responseText;
}

function loadobjs(){
if (!document.getElementById)
return
for (i=0; i<arguments.length; i++){
var file=arguments[i]
var fileref=""
if (loadedobjects.indexOf(file)==-1){ //Check to see if this object has not already been added to page before proceeding
if (file.indexOf(".js")!=-1){ //If object is a js file
fileref=document.createElement('script')
fileref.setAttribute("type","text/javascript");
fileref.setAttribute("src", file);
}
else if (file.indexOf(".css")!=-1){ //If object is a css file
fileref=document.createElement("link")
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", file);
}
}
if (fileref!=""){
document.getElementsByTagName("head").item(0).appendChild(fileref)
loadedobjects+=file+" " //Remember this object as being already added to page
}
}
}
/******************************************************************************************/
/*Transparente a visible*/
function incropacity(){
	if(dofade==true){
		if(ieop<=100){
			ieop+=7;
			if(IE4 || IE5)externa.style.filter="alpha(opacity="+ieop+")";
			if(NS6)externa.style.MozOpacity=ieop/100;
		op_id=setTimeout('incropacity()', 200);
		}
	}
}
/******************************************************************************************/
function colorboton(color,capa,arriba1,arriba2,arriba3,arriba4,abajo1,abajo2,abajo3,abajo4){
	document.getElementById(capa).style.background=color;
	document.getElementById(arriba1).style.background=color;
	document.getElementById(arriba2).style.background=color;
	document.getElementById(arriba3).style.background=color;
	document.getElementById(arriba4).style.background=color;
	document.getElementById(abajo1).style.background=color;
	document.getElementById(abajo2).style.background=color;
	document.getElementById(abajo3).style.background=color;
	document.getElementById(abajo4).style.background=color;
}