function imgshow(url, width, height)
{
	LeftPosition=(screen.width)?(screen.width-width)/2:100;
	TopPosition=(screen.height)?(screen.height-height)/2:100;
	var win = window.open(url,'showpic','width=' + width + ',height=' + height + ',top=' + TopPosition + ',left=' + LeftPosition + ',resizable=0,scrollbars=no,menubar=no,toolbar=no,status=no');
}
function check_notification_tellpanel()
{

     advAJAX.post({
    		url: 'ajax_captcha.php',
	 		parameters : {
      			uid : $("#uid_js").val(),
      			cid : $("#cid_js").val()
     		},
                
	 		onSuccess : function(obj) {
				if(eval(obj.responseText) ){
                                
					//$("#uid_js").removeClass("invalid");
                    $("#uid_js").css("background-color","#fff");
                    document.zamowienie.submit();
				}else{
					//$("#uid_js").addClass("invalid");
                    $("#uid_js").css("background-color","#f4e8ea");
                    alert('Wpisz prawidłowy kod z obrazka');
                    return false;
				}
      		}
  		});



 
}