function onImage(name) {
	for(i=0; i<document.images.length; i++)
	{
		if(name==document.images[i].name)
			document.images[i].src = "images/site/buttons/"+name+"_act.jpg";		
	}
    return true;
}

function offImage(name) {
  	for(i=0; i<document.images.length; i++)
	{
		if(name==document.images[i].name)
			document.images[i].src = "images/site/buttons/"+name+"_pas.jpg";		
	}
	return true;
}

function menu_click(mode)
{
	if(mode==8)
	{
		open("http://forum.skunk.com.ua");
		return true;
	}	
	document.location="index.php?mode="+mode;
	return true;
}


function search()
{
	str="search.php?search="+document.getElementById("search").value;
	document.location=str;
}

function select_chapter(chapter)
{
	str="index.php?mode=5&id_chapter="+chapter;
	document.location=str;
}