// Create the popup object. For predictable results, always create
// a global popup object.
var oPopup = window.createPopup();
var realHeight = 0;
var oPopBody = oPopup.document.body;
var popWidth = 0;
var popHeight = 0;

function openPopup()
{
	document.body.style.cursor = "pointer";
    oPopBody.style.border = "#d2d2d2 2px solid";
    getcardetails(event.srcElement.id);
    oPopBody.innerHTML ="";
    oPopBody.innerHTML = oCar.innerHTML;
    //oPopup.show(event.screenX+20,event.screenY+50,popWidth,popHeight,event.srcElement.id);
    oPopup.show(event.offsetX+20,event.offsetY+50,popWidth,popHeight,event.srcElement.id);
}

function closePopup()
{
   document.body.style.cursor = "default";
   oPopup.hide();
}

function getcardetails(carID)
{
switch(carID)
{
case ("car1"):
{
var carTitle = "Executive Sedan";
var carDetails = "With numerous luxury amenities the executive sedan is a great choice for discreet and comfortable travel.";
var carImage = "images/fleet_sedan.gif";
var passImage = "images/icon_sedan.gif";
popWidth = 420;
popHeight = 126;
break
}
case ("car2"):
{
var carTitle = "Mercedes S-Class";
var carDetails = "360Limo proudly features this ultra luxurious vehicle. Heated seats, unparalleled safety features and a powerful presence, make this the foremost luxury vehicle in our fleet.";
var carImage = "images/fleet_mbenz.gif";
var passImage = "images/icon_merc.gif";
popWidth = 420;
popHeight = 151;
break
}
case ("car3"):
{
var carTitle = "Executive SUV";
var carDetails = "With plenty of legroom and luggage space, the Executive SUV offers a perfect blend of comfort and style.";
var carImage = "images/fleet_SUV.gif";
var passImage = "images/icon_SUV.gif";
popWidth = 420;
popHeight = 130;
break
}
case ("car4"):
{
var carTitle = "Executive Van";
var carDetails = "360Limo features executive vans, perfect for small groups. The executive vans feature individual high back seating, easy loading and unloading access and abundant luggage space.";
var carImage = "images/fleet_van.gif";
var passImage = "images/icon_van.gif";
popWidth = 420;
popHeight = 185;
break
}
case ("car5"):
{
var carTitle = "Limousine";
var carDetails = "360Limo limousines come in 6, 8, or 10-passenger configurations. Ideal for Road Shows and special events, limousines include the following luxury amenities: privacy divider, TV/VCR/DVD system, decanters, glassware, and a premium sound system.";
var carImage = "images/fleet_limo.gif";
var passImage = "images/icon_limo.gif";
popWidth = 480;
popHeight = 185;
break
}
case ("car6"):
{
var carTitle = "Mini Bus";
var carDetails = "A great choice for shuttle service and group events, the Minibus is a safe and comfortable ride. 360Limo Mini buses are equipped with TV/VCR/DVD systems and separate luggage compartments.";
var carImage = "images/fleet_minibus.gif";
var passImage = "images/icon_minibus.gif";
popWidth = 420;
popHeight = 151;
break
}
case ("car7"):
{
var carTitle = "Mini Coach";
var carDetails = "360Limo is proud to offer a versatile alternative to a full size Coach.  Great for all outings, this vehicle is great for in town and out of town trips.";
var carImage = "images/fleet_minicoach.gif";
var passImage = "images/icon_minicoach.gif";
popWidth = 420;
popHeight = 139;
break
}
case ("car8"):
{
var carTitle = "Limo Bus";
var carDetails = "With amenities such as large screen TV, premium sound system, multiple bars, and controlled lighting, the Limo Bus offers high comfort and versatility. The Limo Bus can be used for both corporate needs and special events.";
var carImage = "images/fleet_limobus.gif";
var passImage = "images/icon_limobus.gif";
popWidth = 420;
popHeight = 177;
break
}
case ("car9"):
{
var carTitle = "Motor Coach";
var carDetails = "360Limo can provide 47-57 passenger coaches for group travel. All coaches are equipped with TV/VCR/DVD systems, a premium sound system and a restroom.";
var carImage = "images/fleet_coach.gif";
var passImage = "images/icon_coach.gif";
popWidth = 480;
popHeight = 135;
break
}
default:
var carTitle = "Mercedes S-Class";
var carDetails = "360Limo proudly features this ultra luxurious vehicle. Heated seats, unparalleled safety features and a powerful presence, make this the foremost luxury vehicle in our fleet.";
var carImage = "images/fleet_mbenz.gif";
var passImage = "images/icon_merc.gif";
popWidth = 420;
break
}
document.getElementById('carTitle').innerHTML=carTitle;
document.getElementById('carDetails').innerHTML=
carDetails + 
"<br><IMG  src=" + passImage + " border='0' align=left>";
document.getElementById('carImage').innerHTML=
"<IMG  src=" +carImage+ " border=0>";
}