function getItem(str){
 document.location.href = str;
 return;
}

function getimage(afbeelding){
	a = document.getElementById('img_big');
	a.src = afbeelding;
	
	if (a.width > 200) a.width = 200;
	if (a.Height > 200) a.Height = 200;
}

function numbersonly(){
 if (event.keyCode<48||event.keyCode>57)
  return false
}

function checkSearch(){
 zoekwoord = document.search.SValue.value;
 zoekwoord = zoekwoord.replace('"','')
 zoekwoord = zoekwoord.replace('\'','')
 if (zoekwoord == ''){
  alert('U dient een geldig zoekwoord op te geven');
  return;
 }
 
 document.location.href = 'index.asp?search=true&SValue=' + zoekwoord;
}

function checkSearch2(){
 min_getal = document.search2.zoek_min.value;
 max_getal = document.search2.zoek_max.value; 
 
 if (min_getal == '' && max_getal == '' ){
  alert('Ongeldige getallen range');
  return;
 }
 
 document.location.href = 'index.asp?numsearch=true&zoek_min=' + min_getal + '&zoek_max=' + max_getal;
}
