function CambiaImg(imgid,imgnew){
	if(navigator.appVersion.substring(0,1)>=3){
		document.images[imgid].src=imgnew;
	}
}

