function apriScheda(IDscheda, lingua, tipo)
{
		if (tipo=="popup")
		{
			if (winPopupScheda && winPopupScheda.open())	
			//esiste già la finestra popup: gli passo l'URL e gli do il fuoco
			{
					winPopupScheda.location="popup_dispatcher.asp?IDscheda="+IDscheda+"&lingua="+lingua+"&tipo="+tipo
				winPopupScheda.focus();
			}
			else
			{
				var winPopupScheda;
				winPopupScheda=window.open("popup_dispatcher.asp?IDscheda="+IDscheda+"&lingua="+lingua+"&tipo="+tipo,"winPopupScheda","toolbar=no,menubar=no,scrollbars=yes,status=yes,top=50,left=50,height=450,width=700");
			winPopupScheda.focus();
			}
	    }
}

function apriScheda_new(IDscheda, lingua, tipo)
{
	window.location="popup_dispatcher.asp?IDscheda="+IDscheda+"&tipo="+tipo
}


function gotoSchedeCategoriaCitta(IDcitta, IDtipoScheda, lingua)
{
//opener.location="/cgwe/schedeCategoriaCitta.asp?IDcitta="+IDcitta+"&IDtipoScheda="+IDtipoScheda+"&lingua="+lingua
window.location="/cgwe/schedeCategoriaCitta.asp?IDcitta="+IDcitta+"&IDtipoScheda="+IDtipoScheda+"&lingua="+lingua
//opener.focus()	
//window.close();
}

function popupZoomImgSottotappa(IDsottotappa, IDmedia, lingua) 
{
	var newWin;
	//alert(URLpagina)
	newWin=window.open("/iwe/popupZoom.asp?IDsottotappa="+IDsottotappa+"&IDmedia="+IDmedia+"&lingua="+lingua,"","toolbar=no,menubar=no,scrollbars=yes,top=50,left=150,height=500,width=500");
	newWin.focus();
}