﻿function SetProductType(product_setter,ar_str,ar_com,ar_pm)
{ 
    document.getElementById("QuickSearchProduct").innerHTML = product_setter.innerHTML;
    document.getElementById("QuickSearchProductList").style.display = "none";
	window.location="model_choice.asp?barea="+ar_str+"&bcom="+ar_com+"&pmstr="+ar_pm;
}
function Setpm(pm_s,tr_p,pm_ar,pm_com)
{
    document.getElementById("b").innerHTML = pm_s.innerHTML;
    document.getElementById("bList").style.display = "none";
	window.location="model_choice.asp?barea="+pm_ar+"&bcom="+pm_com+"&pmstr="+tr_p;
}
function Setcom(c_s,sel_id,com_ar,com_pm)
{
    document.getElementById("comsel").innerHTML = c_s.innerHTML;
    document.getElementById("comselList").style.display = "none";
	window.location="model_choice.asp?barea="+com_ar+"&bcom="+sel_id+"&pmstr="+com_pm;
}

function LightenDropDownItem(dropdown_item)
{
    dropdown_item.style.backgroundColor = "#ebebeb";
    dropdown_item.style.color = "#333333";
}
function UnLightenDropDownItem(dropdown_item)
{
    dropdown_item.style.backgroundColor = "";
    dropdown_item.style.color = "";
}



function LightenDropDown(dropdown_item)
{
    dropdown_item.style.backgroundColor = "";
    dropdown_item.style.backgroundImage = "url(images/DropDownBG_Hover.gif)";
    dropdown_item.style.backgroundPosition = "right center";
    dropdown_item.style.backgroundRepeat = "no-repeat";
}



function UnLightenDropDown(dropdown_item)
{
    dropdown_item.style.backgroundColor = "";
    dropdown_item.style.backgroundImage = "url(images/DropDownBG.gif)";
    dropdown_item.style.backgroundPosition = "right center";
    dropdown_item.style.backgroundRepeat = "no-repeat";
}

function ShowDrop(dropdown_id)
{
//$(dropdown_id + "List").style.width = (parseInt($(dropdown_id).style.width) + 25).toString() + "px";
//$(dropdown_id + "List").style.display = ($(dropdown_id + "List").style.display=="none"?"block":"none");
document.getElementById(dropdown_id + "List").style.width = (parseInt(document.getElementById(dropdown_id).style.width) + 25).toString() + "px";
document.getElementById(dropdown_id + "List").style.display = (document.getElementById(dropdown_id + "List").style.display=="none"?"block":"none");
}