﻿// JScript File
// <!CDATA[
function HTMLButton_onclick(objThis)  {
    var HRefName;

    if(objThis.title=='Home')
    {
        HRefName='./Default.aspx'
        window.location.href = HRefName
    }
    else if(objThis.title=='Finance')
    {
        HRefName='./Finance.htm'
        window.location.href = HRefName
    }
    else if(objThis.title=='Contact')
    {
        HRefName='./Contact.htm'
        window.location.href = HRefName
    }
    else
    {
	    HRefName='./usedcars.aspx'	        
	    document.all["Model"].value = objThis.title;
	    document.forms[0].action=HRefName;
	    document.forms[0].submit();
	}			
}

function mouseMove(objthis,type)
{
    if(type=='moveOut')
    {
        objthis.style.cursor = 'auto'
    }
    else
    {
        objthis.style.cursor = 'hand'
    }
}
// ]]>

