function imgchg(imgname) {
	if (navigator.appVersion > "3") {
		imgnum = new Image();
		imgpath = document.images[imgname].src;

		if( imgpath.indexOf("_on.gif") >= 0 ){
			imgpath = imgpath.replace("_on.gif", ".gif");
		}else if( imgpath.indexOf("_on.jpg") >= 0 ){
			imgpath = imgpath.replace("_on.jpg", ".jpg");
		}else if( imgpath.indexOf(".gif") >= 0 ){
			imgpath = imgpath.replace(".gif", "_on.gif");
		}else{
			imgpath = imgpath.replace(".jpg", "_on.jpg");
		}

		imgnum.src = imgpath;
		document.images[imgname].src = imgnum.src;
	}
}


