function apriZoom(url, w, h){
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open(url,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +", scrollbars=auto, resizable=yes");
}

function apriDownload(url, w, h){
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	w = 430;
	h = 160;
	window.open("download.jsp?file="+url,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +", scrollbars=auto, resizable=yes");	
}

function apriStampa(url, w, h){
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open(url,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +", scrollbars=yes, resizable=yes");
}

function apriLink(url){
	var w = screen.width;
	var h = screen.height;
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open(url,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +", status=1,toolbar=1, location=1, menubar=1,resizable=1");
}

