function MouseOver(img1,ref1, elMenu, e)
{
	if (ref1)
		document.images[img1].src = ref1;
	if (elMenu)
		popUp(elMenu, e);
};

function MouseOut(img1,ref1, elMenu)
{
	if (ref1)
		document.images[img1].src = ref1;
	if (elMenu)
		popDown(elMenu);
};