			function popWindow(){
				var popurl="algemenevoorwaarden.php"
				winpops=window.open(popurl,"","width=600,height=400,scrollbars")
			}

			function showInfo(theId){
				var popurl="info.php?id="+theId;
				winpops=window.open(popurl,"","width=600,height=400,scrollbars")
			}
		
			function clearField(the_field){
				var the_val = the_field.value;
				if(the_val == "1234AB" || the_val == "zoeken" || the_val == "suchen" || the_val == "search"){
					the_field.value="";
				}
			}
		
			// show large images
			function showImage(location, product){
				var popUrl="./shop/img.inc.php?p="+product+"&img_url="+location+"";
				winpops = window.open(popUrl,"","width=100,height=10,");
			}
			
			
			function changeDiv(the_div,the_change)
			{		
			  var the_style = getStyleObject(the_div);
			  if (the_style != false)
			  {
				the_style.display = the_change;
			  }
			}

			function getStyleObject(objectId) {
			  if (document.getElementById && document.getElementById(objectId)) {
				return document.getElementById(objectId).style;
			  } else if (document.all && document.all(objectId)) {
				return document.all(objectId).style;
			  } else {
				return false;
			  }
			}
