﻿<!--

function goSearchTryckta(theForm)
{
	searchType=theForm.search_type.value;
	searchVal1=theForm.search_this.value;

	if((searchType == "all" || searchType == "titel" || searchType == "forfattare") && searchVal1 != '')
	{
		if(searchVal1.length < 3)
		{
			alert('Din sökning måste bestå av minst 3 tecken');
		}
		else
		{
			window.location = "search.php?"+searchType+"=" + searchVal1 + "&p=0";
		}
	}

	if( searchType == "isbn10"  && searchVal1 !='' )
	{
		if(searchVal1.length < 4)
		{
			alert('Din sökning måste bestå av minst 4 tecken');
		}
		else
		{	
			//window.location = "artikel.php?" + searchType + "=" + searchVal1;
			window.location = "search.php?" + searchType + "=" + searchVal1 + "&p=0";
		}
	}	
	
	if( searchType == "artnr" && searchVal1 !='' )
	{
		if(searchVal1.length < 7)
		{
			alert('Din sökning måste bestå av minst 7 tecken');
		}
		else
		{	
			//window.location = "artikel.php?" + searchType + "=" + searchVal1;
			window.location = "search.php?" + searchType + "=" + searchVal1 + "&p=0";
		}
	}		
}

-->