
/* General */

function OpenWindow(strURL,strName,varParams) {
    window.open(strURL,strName,varParams);
}

function SubmitForm(strFormName) {
    document.getElementById(strFormName).submit()
}

/* Car Sales */

function CarSalesDetailsFullImage(strCarSalesDetailsImageShow) { 
    var objCarSalesDetailsImage1=document.getElementById('CarSalesDetailsImage1');
    var objCarSalesDetailsImage2=document.getElementById('CarSalesDetailsImage2');
    var objCarSalesDetailsImage3=document.getElementById('CarSalesDetailsImage3');
    var objCarSalesDetailsImageShow=document.getElementById(strCarSalesDetailsImageShow);
    objCarSalesDetailsImage1.style.visibility='hidden';
    objCarSalesDetailsImage2.style.visibility='hidden';
    objCarSalesDetailsImage3.style.visibility='hidden';
    objCarSalesDetailsImageShow.style.visibility='visible'
}

/* End */
