// popup a larger picture
function PopupPic(sPicURL) {
	window.open( "/e-store/pop_enlarged.asp?"+sPicURL, "", "resizable=1, scrollbars=1, height=1, width=1");
}

function swapImage(image_name,image_src) {
	document.getElementById(image_name).src=image_src;
}

function funLoadImages(arrImages){
	var imgMain;
	var arrBuffer = new Array;
	// Load the images in the array
	for (idxImage = 0; idxImage < arrImages.length; idxImage++){
		arrBuffer[idxImage] = new Image();
		arrBuffer[idxImage].src = arrImages[idxImage];
	}
}
