function changeImg(target1Name, target2Name, target3Name, target4Name, target1Img, target2Img, target3Img, target4Img)
{
	var target1, target2, target3, target4;
	if(document.all)
	{
		target1 = document.all[target1Name];
		target2 = document.all[target2Name];
		target3 = document.all[target3Name];
		target4 = document.all[target4Name];
	}
	else if(document.getElementById)
	{
		target1 = document.getElementById(target1Name);
		target2 = document.getElementById(target2Name);
		target3 = document.getElementById(target3Name);
		target4 = document.getElementById(target4Name);
	}

	target1.src = target1Img;
	target2.src = target2Img;
	target3.src = target3Img;
	target4.src = target4Img;
}

function onOverChange(obj, img)
{
	obj.src = img;
}

function onOutChange(obj, page, img1, img2)
{
	if(frameSrc == page)
	{
		obj.src = img2;
	}
	else
	{
		obj.src = img1;
	}
}

