
// ----- Popup Control ---------------------------------------------------------
function mouseOver(which, image)
{
	document.images[which].src=image;
}

function mouseOut(which, image)
{
	document.images[which].src=image;
}

