﻿function RedirectToMake(makeList)
{
    var MakeID = makeList.value;
    if (MakeID != "0")
    {
    location.href="http://www.autotropolis.com/"+ ReplaceSpecialChars(makeList.options[makeList.selectedIndex].text) +"/research.html";
    }
}
function Search(question, e)
{
	var site_url = "http://www.autotropolis.com/";
	
    if (window.event && window.event.keyCode == 13)
	{
        document.location.href = site_url+"google-search.aspx?domains=www.Autotropolis.com&q="+question+"&sitesearch=www.Autotropolis.com&client=pub-1928764814630299&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A3D81EE%3BLC%3A3D81EE%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BLH%3A50%3BLW%3A168%3BL%3Ahttp%3A%2F%2Falnet.autotropolis.com%2F%2Fimages%2Fheader_left.gif%3BS%3Ahttp%3A%2F%2F%3BFORID%3A11&hl=en#1051";        
	}
    else if (e.which == 13)
	{
        document.location.href = site_url+"google-search.aspx?domains=www.Autotropolis.com&q="+question+"&sitesearch=www.Autotropolis.com&client=pub-1928764814630299&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A3D81EE%3BLC%3A3D81EE%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BLH%3A50%3BLW%3A168%3BL%3Ahttp%3A%2F%2Falnet.autotropolis.com%2F%2Fimages%2Fheader_left.gif%3BS%3Ahttp%3A%2F%2F%3BFORID%3A11&hl=en#1051";
	}
}

 function ReplaceSpecialChars(data)
{
var regExp = /[" - "," ","'","."]/g;
data = data.replace(regExp,"-");
regExp = /["&"]/g;
data = data.replace(regExp,"and");
regExp = /["\/", " \/ "]/g;
data = data.replace(regExp,"-Or-");
return data;
}