
function swapImage(imgname, image)	
{
	document.images[imgname].src = image;
}

function NoEnter()
{
	if (window.event.keyCode == 13) 
		return(false);
}

function showBusImg(picid, img)
{
	document.getElementById(picid).src = img;
}


