function small_widget_text_color(bg_color) { var text_color = 'ffffff'; if ( bg_color == 'silver' || bg_color == 'yellow' || bg_color == 'lime' ) { var text_color = '000000'; } return text_color; } function small_widget(username, name, color, show_link, wref, name_no_s, search_value) { if (!wref) { wref = ''; } if (!search_value) { search_value = ''; } var link = ''; if (show_link == 1) { link = 'Visit Shop'; } var name_s = '\'s'; if (name_no_s == 1) { name_s = ''; } var text_color = small_widget_text_color(color); html = '
' + name + name_s + ' Search
' + link + '
'; return html; } var html = small_widget('aswad', 'Aswad', 'blue', '1', 'site', '1', ''); document.write(html); document.searchform.search.focus();