var hiddenImg = new Array(4);
  
function changeStyle(object) {
      if (object.style.filter=='none')
            object.style.filter='Gray';
      else
            object.style.filter='none';
}

function testJS()
{
	alert('Включено');
}

function NewWin(str)
{
	window.open(str,'Example','scrollbars=0,resizable=0,width=260,height=470');
	void(0);
}

