/*function ShowLoad()
{
	alert('pl');return;
	var form_block = $('edit-post-body-attachment-upload-control-form-container');
	return false;
}
*/
function TellUs()
{
	var tell_us_elem = $('tellus_content');
	var areyouhappy = $('are-you-happy');
	var areyouhappyinput = $('are-you-happy-input');
	
	if (tell_us_elem != null)
	{
		var content = tell_us_elem.value;
		if (content != "")
		{
			if (areyouhappyinput != null)
				areyouhappyinput.innerHTML = '<div style="width: 162px;height: 149px;text-align:center;padding-top: 50px;"><img src="http://bubbleshq.com/wp-content/themes/bubbles/images/ajax-loader.gif" alt="" title="" border="0" /></div>';
			var post_var = 'content=' + content;
			
			var url = 'tellus.php';
			new Ajax.Request(url, {
			  method: 'post',
			  postBody: post_var,
			  onSuccess: function(transport) {
					if (areyouhappy != null)
					{
						areyouhappy.innerHTML = '<font color="#ff6600">Thank you for contacting us.</font>';
						if (areyouhappyinput != null)
						{
							areyouhappyinput.innerHTML = '';
							areyouhappyinput.appendChild(tell_us_elem);
						}
						tell_us_elem.value = '';
						tell_us_elem.focus();
					}
			}
			});
		}
		else
		{
			if (areyouhappy != null)
			{
				areyouhappy.innerHTML = '<b><font color="#ff6600">Write us what you think</font></b>';
				tell_us_elem.focus();
			}
		}
	}
}