/*
Autor: http://www.niquelao.net
Puedes utilizar líbremente este script respetando estas línea de comentarios.
También puedes modificarlo líbremente. Cualquier mejora será bienvenida.
*/
function cambiacss(id){
    var targetElement = document.getElementById(id);
	if(targetElement.href.indexOf('-print') == -1) {
		targetElement.href = "css/style-print-preview.css"
		return "vista normal";
	}else{
		targetElement.href = "css/style.css"
		return "vista preliminar";
	}
}
function enlaceimpresion(){
   var pie = document.getElementById("pie");
   parrafo = document.createElement("p");
   parrafo.innerHTML = '<a class="enlaceimpresion" href="#" onclick="this.innerHTML=cambiacss(\'hojadeestilo\');" onkeypress="this.innerHTML=cambiacss(\'hojadeestilo\');">Vista Preliminar</a>';
   pie.appendChild (parrafo);
}

window.onload = enlaceimpresion;