function searchAction(){
    //alert('called')
    //catid = window.document.searchfrm.sel_catlist.value;
    keyword = window.document.searchfrm.searchbox.value;
    
    //if it is all categories user must enter a search word
    if(keyword == '')  {
         alert('Please enter a search word')
    }
    else
    {window.document.searchfrm.submit();}
}



function BookmarkSite()
{
    if ((navigator.appName == 'Microsoft Internet Explorer') && (window.clientInformation.javaEnabled() == true ))
    {
        window.external.AddFavorite('http://www.abigthinker.com','aBigThinker.com, Make money with aBigThinker');
    }
    else
    {alert('To bookmark this page, click on OK to close this window and then press Ctrl-D.')}
}
function pagination(action, mode){

	//alert(action);
	//alert(mode);
        if (mode == 'BRAND'){
            window.document.searchResults.action="BrandItemsShow.asp"
        }
        if (mode == 'SEARCH'){
            window.document.searchResults.action="SearchResultsShow.asp"
        }
        if (mode == 'CAT'){
            window.document.searchResults.action="cs.asp"
        }
        if (mode == 'HOME'){
            window.document.searchResults.action="default.asp"
        }
        window.document.searchResults.ACTION.value=action;
        window.document.searchResults.submit();
    }
    
function item_onclick(url) {
        winHndl = window.open(unescape(url),'WIN','menubar=yes,resizable=yes,toolbar=yes,location=yes,status=no,fullscreen=no,scrollbars=yes,width=750,height=550,screenX=0,screenY=0,left=0,top=0');
        winHndl.focus();  // gives runtime (unspecified) error 
        //return false;
    }