/* Switches image url */
function SwImg(imgid, imgurl) {
	if (document.getElementById(imgid)) {
		document.getElementById(imgid).src=imgurl;
	}
}