﻿// JScript File

function GetTema(valore)
{
    document.frmGetTema.IdTema.value = valore;
    document.frmGetTema.submit();
}

function GetSottotema(Tema,Sottotema)
{
    document.frmGetTema.IdTema.value = Tema;
    document.frmGetTema.IdSottotema.value = Sottotema;
    document.frmGetTema.submit();
}

function GetPath(Nodo,Lingua)
{    
    document.getElementById("MainBody").src = "MainBody.asp?IdSottotema=" + Nodo + "&sIdLingua=" + Lingua;
}

function GoToPage(pagina)
{
    document.getElementById("MainBody").src = pagina;
}

function changePg(n,nomeForm) 
{
    var objForm = nomeForm;
	if(!objForm) return;
    	
	objForm.page.value = n;
	objForm.submit();
}

function GetMedia(Nodo,Tipologia)
{
    document.getElementById("MainBody").src = "MediaAreaBody.asp?IdNodo=" + Nodo + "&IdTipo=" + Tipologia;
}

function GetNews(Nodo)
{
    document.getElementById("MainBody").src = "newsBody.asp";
}

function GetPress(Nodo)
{
    document.getElementById("MainBody").src = "MediaAreaBodyPress.asp?Nodo=" + Nodo;
}