function DoEffectMouseOver (Img)
{
	//Img.style.borderWidth  = '1';
	//Img.style.borderColor  = "Yellow";
	Img.src = Img.src.replace("_out_","_over_") ;
}


function DoEffectMouseOut (Img)
{
	//Img.style.borderWidth  = '0';
	//Img.style.borderColor  = "Black";
	Img.src= Img.src.replace("_over_","_out_") ;
}


function LoadLargeImg(Img) 
{
//alert(Img.src.replace("_s","_l"));
document.getElementById("LargeImg").src = Img.src.replace("_s.","_l.");
}


