imageFlag = 0
function setFlag()  {
   imageFlag = 1
}
function searchEntry(event, obj, params)
{
   nullFlag = 1
   
   if (document.forms[0].COMBO1.selectedIndex > 1) {
     nullFlag = 0
   }
   if (document.forms[0].COMBO3.selectedIndex > 1) {
     nullFlag = 0
   }
   if (document.forms[0].TEXTBOX1.value != "") {
     nullFlag = 0
   }
   if (document.forms[0].COMBO5.selectedIndex > 0) {
     nullFlag = 0
   }
   
   if (nullFlag == 1)
   {   
     alert("Due to our extensive product line, please make a selection\nfrom one of the lists provided to narrow your search.")
     return false
   } else {
     return true
   }
}

function openWin(url) {
       winStats='toolbar=no,location=no,directories=no,menubar=no,'
       winStats+='scrollbars=no,width=270,height=300'
       if (navigator.appName.indexOf("Microsoft")>=0) {
          winStats+=',left=360,top=155'
        }else{
          winStats+=',screenX=360,screenY=155'
        }
       floater=window.open(url,"",winStats)     
    }

