

function submitheadersearch(e,strval)
{
	var val; 
	val = e.keyCode;
	if (val == 13)
	{
		if (document.formheadersearch.txtheadersearch.value=="Type here for Search" || document.formheadersearch.txtheadersearch.value=="")
		{
			alert("Please provide keywords to search articles");
			document.formheadersearch.txtheadersearch.focus();
			return false;
		}
		//http://search.fibre2fashion.com/articles.php?posted=posted&searchterm=deni&c=&x=0&y=0
		//http://search.fibre2fashion.com/searchresult.aspx?currentSection=&currentCategoryCaption=F2F&q=deni
		//strurl = "http://search.fibre2fashion.com/articles.php?posted=posted&searchterm=" + document.formheadersearch.txtheadersearch.value + "&c=&x=0&y=0"
		//strurl = "http://search.fibre2fashion.com/searchresult.aspx?currentSection=&currentCategoryCaption=F2F&q=" + document.formheadersearch.txtheadersearch.value
		strurl = "http://search.fibre2fashion.com/searchresult.aspx?section=General&c=&start=&q=" + document.formheadersearch.txtheadersearch.value
		window.open(strurl,'_blank','width=700,height=500,scrollbars,status=1,menubar=1,resizable=1,toolbar=1,titlebar=1')
		return false;
  	}
  	if (strval=="Oclick")
  	{
  	
		if (document.formheadersearch.txtheadersearch.value=="Type here for Search" || document.formheadersearch.txtheadersearch.value=="")
		{
			alert("Please provide keywords to search articles");
			document.formheadersearch.txtheadersearch.focus();
			return false;
		}
		//strurl = "http://search.fibre2fashion.com/searchresult.aspx?currentSection=&currentCategoryCaption=F2F&q=" + document.formheadersearch.txtheadersearch.value
		//strurl = "http://search.fibre2fashion.com/articles.php?posted=posted&searchterm=" + document.formheadersearch.txtheadersearch.value + "&c=&x=0&y=0"
		//strurl = "http://search.fibre2fashion.com/articles.php?posted=posted&searchterm=" + document.formheadersearch.txtheadersearch.value + "&c=&x=0&y=0"
		//strurl = "http://search.fibre2fashion.com/searchresult.aspx?currentSection=&currentCategoryCaption=F2F&q=" + document.formheadersearch.txtheadersearch.value
		strurl = "http://search.fibre2fashion.com/searchresult.aspx?section=General&c=&start=&q=" + document.formheadersearch.txtheadersearch.value
		window.open(strurl,'_blank','width=700,height=500,scrollbars,status=1,menubar=1,resizable=1,toolbar=1,titlebar=1')
  	}
  }

function jsblur()
{
	if(document.formheadersearch.txtheadersearch.value=="")
	{
		document.getElementById("txtheadersearch").value ="Type here for Search";			
	}	
	return false;
}
function jsfocus()
{
	if(document.formheadersearch.txtheadersearch.value =="Type here for Search")
	document.formheadersearch.txtheadersearch.value = "";
	return false;
}
function selSearch(stxt,scont)
{   
    if(stxt!="")
	scont.value = stxt;
	else
	scont.value = "search";
}

function submitenter(objevent)
{
 if(objevent.keyCode==13)
 {
   return submitSearch();
 }
 
}
