﻿window.onload = Setup;

function Setup()
{
    var listitem = document.getElementById("LI_OtherBrands");
    
    if(listitem!=null)
    {
        var links = listitem.getElementsByTagName("a");
        links[0].title = "Other Brands";
        links[0].target = "_blank";
        links[0].onclick = function()
        {
            return GotoEvansHalshaw();
        }
    }
    
    var listitemTrucks = document.getElementById("LI_TruckVan");
    
    if(listitem!=null)
    {
        var links = listitemTrucks.getElementsByTagName("a");
        links[0].title = "Truck & Van";
        links[0].target = "_blank";
        links[0].onclick = function()
        {
            return GoToChatfields();
        }
    }
}


function GotoEvansHalshaw()
{
    var result = confirm("You are about to visit our partner site, Evans Halshaw.\nDo you wish to proceed?");
    
    if (result)
    {
        return true;
    }
    else
    {
        return false;
    }
}


function GotoQuicks() {
    var result = confirm("You are about to visit our partner site, Quicks.\nDo you wish to proceed?");

    if (result) {
        return true;
    }
    else {
        return false;
    }
}


function GoToChatfields()
{
    var Message = confirm("You are about to visit our partner site Chatfields, for all of your Truck & Van requirements.  Do you wish to proceed?");
    
    if(Message)
    {
        return true;
    }
    else
    {
        return false;
    }
}

