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();
	}
}