/*
    Javascript
*/

function imgswap(imgname,imgw,imgh,id) {
	document.getElementById(id).width = imgw;
	document.getElementById(id).height = imgh;
	document.getElementById(id).src = 'images/'+imgname+'.jpg';
}

