// JavaScript Document
function apri(pag,w,h) {
	var height;
	var widht;
		if ((h==null) | (w==null)) {
			height = 200;
			width = 300;
		} else {
			height=h;
			width=w;			
		}
		winvar=window.open(pag,"Finestra","height="+height+",width="+width+",toolbar=no,directories=no,menubar=yes,scrollbars=yes,location=no,status=no,resizeable=no");
		return;
	}