function win(imgn, width, height) {
	var NewWin=window.open('', '', config='height='+height+',width='+width+',scrollbars=no,resizable=no');
	NewWin.document.write("<html>");
	NewWin.document.write("<head>");
	NewWin.document.write("<title>Encinar Rotulos avila</title>");	
	NewWin.document.write("</head>");
	NewWin.document.write("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	NewWin.document.write("<img src='"+imgn+"'>");
	NewWin.document.write("</body>");
	NewWin.document.write("</html>");
}