Просмотр файла cms/screen/use.js

Размер файла: 1.22Kb
todo.onload(function(){
    todo.gallery('gallery');
});


function hide_img(num){
	var scr=document.getElementById("app"+num);
	tagList = scr.getElementsByTagName("a");

	document.getElementById('butt'+num).onclick=function()
	{
		return getIMG(num);
	}
document.getElementById('butt'+num).src="../screen/show.gif";

	for (var i = 0; i < tagList.length; i++)
	{
		tagList[i].attributes[1].nodeValue="";//Атрибут href
		tagList[i].innerHTML="";
	}
}



function getIMG(num)
{
var scr=document.getElementById("app"+num);
document.getElementById('butt'+num).onclick=function()
	{
		return hide_img(num);
	}
document.getElementById('butt'+num).src="../screen/hide.gif";

tagList = scr.getElementsByTagName("a");
for (var i = 0; i < tagList.length; i++)
{
	var path=i+1;
	tagList[i].attributes[0].nodeValue="http://java-virys.narod.ru/screen/imgs/"+num+"/"+path+".png";//Атрибут href
	tagList[i].innerHTML="<img src=http://java-virys.narod.ru/screen/imgs/"+num+"/"+path+".png width=25 height=25>";
	//tagList[i].rel="gallery["+num+"]";//Изменить параметр соответственно
	tagList[i].attributes[1].nodeValue="gallery["+num+"]";
	//document.write(tagList[i].rel+"="+tagList[i].attributes[1].nodeValue);
}

}