function goToLink(pSelect)
{
	if(pSelect[pSelect.selectedIndex].value.length == 0)
	{
		return;
	}
	else if (pSelect[pSelect.selectedIndex].value.substring(0, 4) == "http")
	{
		window.open(pSelect[pSelect.selectedIndex].value,'_self');
	}
	else if (pSelect[pSelect.selectedIndex].value.substring(0, 3) == "www")
	{
		window.open("http://" + pSelect[pSelect.selectedIndex].value, '_self');
	}
	else
	{
		window.open(pSelect[pSelect.selectedIndex].value, '_self');
	}
}

/*
 * This whole part is only used on special occasions.
 */

// Set image paths.  
src = ["images/auto/acura.jpg", 
       "images/auto/bmw.jpg",
       "images/auto/buick.jpg",
       "images/auto/cadillac.jpg",
       "images/auto/chevy.jpg",
       "images/auto/chrysler.jpg",
       "images/auto/daewoo.jpg",
       "images/auto/dodge.jpg",
       "images/auto/ferrari.jpg",
       "images/auto/ford.jpg",
       "images/auto/gm.jpg",
       "images/auto/honda.jpg",
       "images/auto/hummer.jpg",
       "images/auto/hyundai.jpg",
       "images/auto/infiniti.jpg",
       "images/auto/isuzu.jpg",
       "images/auto/jaguar.jpg",
       "images/auto/jeep.jpg",
       "images/auto/kia.jpg",
       "images/auto/lamborghini.jpg",
       "images/auto/landrover.jpg",
       "images/auto/lexus.jpg",
       "images/auto/lincoln.jpg",
       "images/auto/maserati.jpg",
       "images/auto/mazda.jpg",
       "images/auto/mercedes.jpg",
       "images/auto/mini.jpg",
       "images/auto/mitsubishi.jpg",
       "images/auto/nissan.jpg",
       "images/auto/pontiac.jpg",
       "images/auto/porsche.jpg",
       "images/auto/rolls.jpg",
       "images/auto/saab.jpg",
       "images/auto/saturn.jpg",
       "images/auto/scion.jpg",
       "images/auto/subaru.jpg",
       "images/auto/suzuki.jpg",
       "images/auto/toyota.jpg",
       "images/auto/vw.jpg",
       "images/auto/volvo.jpg"]




       //set duration for each image
       duration = 4;

       //Please do not edit below
       ads=[]; ct=0;
       function switchAd() {
       var n=(ct+1)%src.length;
       if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
       document["Ad_Image"].src = ads[ct=n].src;
       }
       ads[n=(ct+1)%src.length] = new Image;
       ads[n].src = src[n];
       setTimeout("switchAd()",duration*1000);
       }
       function doLink(){
       location.href = url[ct];
       } onload = function(){
       if (document.images)
       switchAd();
       }
