﻿
function mouseOver(hfPhotoID, hplPhotoID, imgButton, hplPhoto)
{
	var source;
	var source2;
	
//	alert(hfPhotoID + " - " + hplPhotoID + " - " + imgButton + " - " + hplPhoto);

	source = document.getElementById(hfPhotoID).value;
	source2 = decodeURI(document.getElementById(hplPhotoID).href);
	
	document.getElementById(imgButton).src = source;
	document.getElementById(hplPhoto).href = source2;
}

