
<!--

if (document.images) 
{
        ObjCreat = new Array("but1","but2","but3","but4","but5","but6");

        ObjContent = new Array ();
        for (i in ObjCreat) 
	{
                ObjContent[i] = new Image ();
                ObjContent[i].src ="../img/" + ObjCreat[i] + "_over.gif";
        }
}

function OnOff (mark, type)
{
	if (document.images) 

	{
		document.images[mark].src = "../img/" + mark + (type ? ".gif" : "_over.gif");
	}
}

//-->
