$("#searchForm").css("display","none");
$("#topNavForm").append('<form action="http://fashion.warehouse.co.uk/search" method="get" id="searchFormSLI" onSubmit="checkSearch();" name="searchform"><label class="hide" for="w">Enter keywords or product code to search</label><input type="hidden" id="country" name="country" value="'+countryISO+'" /><input name="w" type="text" id="sli_search_1" value="Keyword or code" class="clearValue topFormItem" autocomplete="off" /><input type="hidden" name="asug"><input type="button" id="search_button"alt="Search" onClick="checkSearch();" class="sli_button" /></form>');
 
function checkSearch(){
		oSForm = document.forms[2];
		if ((oSForm.elements["sli_search_1"].value == "Keyword or code")||(oSForm.elements["sli_search_1"].value == "")){
			oSForm.elements["sli_search_1"].value = "";
			oSForm.elements["sli_search_1"].focus();
		}
		else
		{
 
			oSForm.submit();
		}
	}