$(function(){
	$("#dialog").dialog("destroy");
	
	
		
		$("#NewFormConteiner").dialog({
			autoOpen: false,
			resizable: false,
			height: 340,
			width: 500,
			modal: true,
			title: 'Задать вопрос',
		});
		
});


$(function (){

    $(".askMe").click(function() {
       // alert('Item selected');
       		      $.ajax({
				      	url: '/_service/new_forms/askMe/form.php',
				        type: "POST",
				        cache: "false",
				        data:{
				        	sUrl:location.href
					        },
				       success: function(data){
		                $('#NewFormConteiner').html(data);
		                $('#NewFormConteiner').dialog('open');
		   			   }		        
		      });
    });

})
