
//===============================
// apertura pop-up immagini
//===============================

function popup(url,width,height)
	{
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,navigation toolbar=no,status=no, top=0, left=0');
	Win.focus() ;
	}

//===============================
// apertura pop-up pagine
//===============================

function Apri(str,nome,width,height) {
    window.open(str, nome, 'width='+width+',height='+height+',scrollbars=no,status=no,location=no,toolbar=no');
}