function e_onProductImageOver( iPos ) {
	iProductImageCurrent = iPos;
	document.getElementById( "imgProductImage" ).src = window.sFilePath + aProductImageSmall[ iPos ];
}

function e_onProductImageClick() {
	var aProduct = aProductImageLarge[iProductImageCurrent];
	var oWindow = window.open( window.sFilePath + "global/image.php?Src=" + escape( aProduct[0] ), "productimage", "width=" + aProduct[1] + ",height=" + aProduct[2] );
	if( oWindow != null && oWindow.focus != null ) {
		oWindow.focus();
	}
}

function e_onFilterClick( iValue ) {
	var oForm = document.forms["ProductFilter"];
	if( oForm != null && oForm.elements != null ) {
		var aField = oForm.elements( "FilterBy[]" );
		if( aField != null ) {
			if( aField.length == null ) {
				aField = [ aField ];
			}
			for( i = aField.length - 1; i >= 0; i-- ) {
				if( aField[i].value == iValue ) {
					aField[i].checked = !aField[i].checked;
				}
			}
		}
	}
}