/**
 * @author tarini
 */

function resizeDiv() {
 	h = getwindowheight();
 //	document.getElementById("content").style.height = (h-125) + "px";
}

window.onload = resizeDiv;
window.onresize = resizeDiv;



function copertina(url) {
	w = window.open('index.php',null,'height=600,width=440,top=100,left=100,scrollbar=yes');
	w.document.write("<center><a href='#' onclick='window.close()'><img style='height:100%;border:0px' src='"+url+"'></a></center>");
}


