﻿//These buttons perform all call the following Javascript function 'openSpecialWindow' and pass in either:
//BOOK , REQUEST or CONFIGURE

function openSpecialWindow(sType){
    //alert(sType);
    switch (sType) {
    case 'BOOK': 
        //window.location = "http://www.fiat.co.uk/contactconsole/ArrangeTestDrive.aspx?eddb=true&mediaCode=106&hash=showroom/home";
        window.open("http://www.fiat.co.uk/contactconsole/ArrangeTestDrive.aspx?eddb=true&mediaCode=106&hash=showroom/home",sType,'location=0,status=0,scrollbars=1,height=685,width=575,resizable=1');
        break;
    case 'REQUEST':
        //window.location = "http://www.fiat.co.uk/contactconsole/requestbrochure.aspx?mediaCode=106&hash=showroom/home";
        window.open("http://www.fiat.co.uk/contactconsole/requestbrochure.aspx?mediaCode=106&hash=showroom/home",sType,'location=0,status=0,scrollbars=1,height=685,width=575,resizable=1');
        break;
    case 'CONFIGURE':
        //window.location = "http://www.fiat.co.uk/Showroom/#showroom/configurator/configurator_home";
        window.open("http://www.fiat.co.uk/Showroom/#showroom/configurator/configurator_home",sType,'location=0,status=0,scrollbars=1,height=610,width=1010,resizable=1');
        break;
    default: alert('error');
    }
}