// funzione per far aprire un pop up
function gowindow(str,titolo,w,h)
{
	openwin = window.open(str,titolo,'width='+ w +',height='+ h +',status=no,scrollbars=no,resizable=no,location=no,toolbar=no');
}