// JavaScript Document
function apriPopup(args)
{	
	var popUp = open('','popUp','left=80, top=80, resizable, width=750, height=600, scrollBars=0,menubar=no,toolbar=no,status=no,directories=no,location=no');
	popUp.document.write("<html><head><title>Biblioteca del Ricetto - Boves</title></head><body style=\"background: #ECEFC1 url(" + args +") no-repeat center;\"></body></html>"); 	
	popUp.focus();
	popUp.document.close();
}

