function writeInfo(cat){
	if ( !cat ){cat=1;}
	sURL = "index.php?act=infoJS&cat_id="+cat;
	new Ajax.Request(sURL,{
		onComplete:function(httpObj){
			$("info_html").innerHTML = httpObj.responseText;
		}
	});
}
