﻿// JScript File
function selectedSort(SortType) 
{
    if (SortType.value != 'none') 
    { 
        window.location=SortType.value;
        //window.location="home.htm";               
    } 
}

//handleoption can be either of the two keywords "show" or "hide"
function handleMessage(elementid, handleoption)
{
    if(handleoption == "show")
    {
        document.getElementById(elementid).style.visibility = 'visible';
    }
    if(handleoption == "hide")
    {
        document.getElementById(elementid).style.visibility = 'hidden';
    }
}

////************************************************** product price scripts ******************************************//

