function reccomend_us()
{
	var p = new Object;
	p['transform'] = 1;
	jQuery.ajax({
		type: "POST",
		url: "/ajax.php", 
		data: p, 
		dataType: "html",
		success: function(data){
				sTitle = data.substr(0, 24);
				sText = data.substr(26);
				showDialod(sText, sTitle, 350, 150);
		}
	});
}


function showDialod(sMessage)
{
	width = 600;
	if(parseInt(arguments[2]) > 0)
		width = parseInt(arguments[2]);
	
	height = 300;
	if(parseInt(arguments[3]) > 0)
		height = parseInt(arguments[3]);
		
	title = "Помилка";
	if(arguments[1])
		title = arguments[1];
		
	jQuery("#pop_up").html(sMessage);
	jQuery("#pop_up").dialog({ 
												maxWidth: 600, 
												width: width, 
												title: title, 
												maxHeight: 600, 
												height: height, 
												show: 'slide' 
											});
}
