
//Funcion Favoritos---------------
function favoritos(pagina,descripcion){
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url=pagina;
var titulo=descripcion;
window.external.AddFavorite(url,titulo);
}
else {
if(navigator.appName == "Netscape") 
alert ("Press Crtl+D to add this site in your Bookmarks o Favoritos");
}
}
//---------------------

//Flip simple--------------
function flip_simple(capa)
  		{
				
    		current=(document.getElementById(capa).style.display == 'none') ? 'block' : 'none';
    		document.getElementById(capa).style.display = current;
			
  		}
		
function flip_estilos(capa1,capa2,capa3,capa4)
  		{
			
    		document.getElementById('colores').style.display = capa1;
    		document.getElementById('textos').style.display = capa2;
    		document.getElementById('vinculos').style.display = capa3;
    		document.getElementById('distribucion').style.display = capa4;
			
  		}
		
//---FUNCIONES PARA EL SELECTOR

function color_capa(propiedad)
{
//document.getElementById('fondo_color').style.background-color = document.getElementById('fondo_color_oculto').value;

document.getElementById(propiedad+'_capa').style.background = document.getElementById(propiedad).value;
}

function cambiar_imgs(imagen1,imagen2,imagen3,imagen4){
	
	window.document['uno'].src=imagen1;
	window.document['dos'].src=imagen2;
	window.document['tres'].src=imagen3;
	window.document['cuatro'].src=imagen4;
	
}

function copia_portapapeles(){ 
   document.form1.area.select() 
   window.clipboardData.setData("Text", document.form1.area.value);
} 


//------------FIN DE LAS FUNCIONES PARA EL SELECTOR DE COLOR
