function expand(categoryId)
{
	var ulObj = document.getElementById(categoryId);
	if(ulObj.style.display == "none")
	{
		ulObj.style.display = "block";
	} else
	{
		ulObj.style.display = "none";
	}
}

function display_image(imagename, id)
{
//	PreView = window.open("product.php?image=" + imagename, imagename, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=1100,height=800");
	window.open("http://www.filic.rs/product.php?image=" + imagename, "image" + id, 'width=1100,height=800,menubar=no,status=no,location=no,toolbar=no,scrollbars=no');

}

/*function display_image(imagename)
{
	imagename = "http://www.filic.rs/" + imagename;
	PreView = window.open("", imagename, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=1100,height=800");
	PreView.document.open();
	PreView.document.write("<HTML><HEAD>");
	PreView.document.write("<TITLE>" + imagename + "</TITLE>");
	PreView.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>");
	PreView.document.write("<IMG HSPACE=0 VSPACE=0 " + "SRC='" + imagename + "'>");
	PreView.document.write("<HR><FORM><INPUT TYPE='button' VALUE='Zatvori' onClick='window.close()'></FORM>");
	PreView.document.write("</CENTER>");
	PreView.document.write("</BODY></HTML>");
	PreView.document.close();
}*/

function changePic(src)
{
	var objImage = document.getElementById("slika");
	objImage.src = src;	
}
