function show_pict(pictid,bisid){
	$.ajax({  
					type: "POST",
                    url: "/picturestore.php",  
                    cache: false,  
					data: "pict="+pictid+"&store="+bisid,
                    success: function(html){
                        $("#modelpict").html(html);  
                    }  
                });
}
