


// this is a fix to ensure k2 ( a  brand name but too short) is concerted to k-2 for search purposes
function checkKeyword( dKeyword ) {
  if ( dKeyword =='k2' )  {
    // set it to searcable string
    document.quick_find.keyword.value = 'k-2';
    //alert ( document.quick_find.keyword.value );
    }

}
