function getSearchNavigation()
{	if( pages )
	{
	 	if( this_page > 0 )
	  	{
	   		document.write("<a href='" + php_host + "/search/" + search_option + "/" + search_field + "/" + (this_page-1) + ".html'><b>&nbsp;< Prev&nbsp;</b></a>&nbsp;| ");
	   	}

	    for( var i = page_start; i < pages; i++ )
	    {
	        if( separator )
	        {
	        	document.write("&nbsp;| ");
	        }

	    	if( page_count > 9 )
	    	{
	        	document.write("<a href='" + php_host + "/search/" + search_option + "/" + search_field + "/"  + i + ".html'><b>&nbsp;... </b></a>");
				break;
	    	}

	        if( i == this_page )
	        {
	        	document.write("<span class='menuhead_black'><b> " + (i+1) + "&nbsp;</b></span>");
	        }
	        else
	        {
	        	document.write("<a href='" + php_host + "/search/" + search_option + "/" + search_field + "/" + i + ".html'><b>&nbsp;" + (i+1) +" </b></a>");
	        }
	        separator = 1;
	        page_count++;
		}

	 	if( this_page < i-1 )
	  	{
	   		document.write("&nbsp;| <a href='" + php_host + "/search/" + search_option + "/" + search_field + "/" + (this_page+1) + ".html'><b>&nbsp;Next >&nbsp;</b></a>");
	   	}
	}
}

function checkUrl(id)
{
	document.getElementById('ID_'+id).checked = true;

 	return true;
}
