function find_item(item) {	if( window.mmIsOpera){ 		return(document.getElementById(item));	}	if (document.all){ 		return(document.all[item]);	}	if (document.getElementById){ 		return(document.getElementById(item));	}	return(false);}function doMouseOut(){	this.document.divform.overcounter.value = (this.document.divform.overcounter.value * 1) - 1;	if ((this.document.divform.overflag.value != "Y")&&(this.document.divform.overcounter.value <= 0)){		MM_swapImgRestore();		doDivHide();	}}function doMouseIn(){	MM_swapImage('Image11','','images/buttons/producten-b.gif',1);	doDivShow();	this.document.divform.overflag.value = "Y";}function doDivHide(){	aa = find_item("producttypediv");	if (aa != false){		aa.style.visibility="hidden";	}}function doDivShow(){	aa = find_item("producttypediv");	if (aa != false){		aa.style.visibility="visible";		this.document.divform.overcounter.value = 0;	}}function doSetDivOver(){	this.document.divform.overflag.value = "Y";}function doSetDivOut(){	this.document.divform.overflag.value = "N";	this.document.divform.overcounter.value = (this.document.divform.overcounter.value * 1)+1;	setTimeout("doMouseOut()",1000);}