function apriLink(url){
	var w = screen.width;
	var h = screen.height;
	var l = 0;
	var t = 0;
	window.open(url,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +", scrollbars=auto, resizable=yes");
}


function apriLegal(){
	var url = "http://www.palzileri.com/legal.jsp";
	var w = 400;
	var h = 500;
	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");
}



