function 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 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 = 'uk.ei42.com/' + username + ''; } var name_s = '\'s'; if (name_no_s == 1) { name_s = ''; } var text_color = widget_text_color(color); html = '
' + name + name_s + ' Search
' + link + '
'; return html; } var html = widget('shopwithchris', '', 'blue', '', 'site', '1', ''); document.write(html); document.searchform.search.focus();