function ImgSrc(value) {
	if( document.all) {
		document.all("mainImage").setAttribute("src", value)
	}
	if( document.getElementById) {
		document.getElementById("mainImage").setAttribute("src", value)
	}
}

