function GetArtPic(PicID,CatID)
{
	if(PicID == 0)
	{
		$(".picart"+CatID).empty();
	}
	else
	{
		$.post('handler.php',{picid: PicID},  function(data){ $(".picart"+CatID).empty(); $(".picart"+CatID).append(data);});
	}
}

