﻿function homePage()
{
	window.top.location="../index.htm";
}

function menuAdmin()
{
	window.top.location="menuAdmin.asp";
}
function usato()
{
	window.top.location="usato.asp";
}
function login()
{
	window.top.location="login.asp";
}
function redirectMenuAdmin()
{
    setTimeout('login()',2000);
}
function openpop(url)
{
	window.open(url,'name','height=600,width=550,scrollbars=yes,menubar=no,location=no');
	//height=600,width=800,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0	
}


function dettaglioVeicolo(id)
{
    var url = "dettaglioVeicolo.asp?idModello=" + id;
    window.top.location=url;
    //openpop(url);
}
function modificaVeicolo(id)
{
    var url = "immissioneAdmin.asp?idModello=" + id;
    window.top.location=url;
    //openpop(url);
}

function check(nomeCheck,startIndex,endIndex) {
    for(var i = startIndex ; i < endIndex+1; i++) {
        document.all[nomeCheck+"["+i+"]"].checked=true;
    };
}
function decheck(nomeCheck,startIndex,endIndex) {
    for(var i = startIndex ; i < endIndex+1 ; i++) {
        document.all[nomeCheck+"["+i+"]"].checked=false;
    };
}
function cambiaImmagine(imgID,imagePath)
{
    document.all[imgID].src = imagePath;
}
function selectOption(nomeSelect,valoreSelezionatoSelect)
{
    document.all[nomeSelect].value = valoreSelezionatoSelect;
}
