<!--

function clearSearchForm (searchForm) {
    var ctrls, i
    ctrls = document.forms[searchForm].elements

    for (i = 0; i < ctrls.length; i++) {
        if (ctrls[i].type == "text")
            ctrls[i].value = ""
    }
    ctrls.SearchCatalogID.selectedIndex = 0
}

function openWindow (url) {

    window.open (url, null, 'toolbar=1, menubar=1, scrollbars=1, resizable=1')

}

function saveThumbNails (cookieName, th, url) {

    setCookie(cookieName, th, "/", "+")
    window.location.href = url

}

//-->
