var myAJAXRequest = new Request.HTML({
	url: 'stuff/screencast/zdscreencast.php',
	onRequest: function() { 
	document.getElementById("Popupgd").innetHTML = "<p><img src=http://all-terra.ru/images/img/loading_small.gif/>&nbsp;<b>Загрузка</b>...</p>"; 
		},
	onSuccess: function(html) {
		$('Popupgd').set('text', '');

		document.getElementById("Overlaygd").style.backgroundColor="#000";

		document.getElementById("Overlaygd").style.position="fixed";
		document.getElementById("Popupgd").style.position="fixed";
		document.getElementById("Popupgd").style.top="20%";
		window.location.href = '#Popupgd';
		$('Popupgd').set("html", "<div align='right'><img onclick='javascript:gdFx.hide();' style='cursor:pointer;' 			src='http://all-terra.ru/images/cross.png' alt='Закрыть' /></div><br/><object type='application/x-shockwave-flash' id='myFlash1' wmode='transparent' data='http://all-terra.ru/stuff/screencast/zdscreencast.swf' width='600' height='471'><param name='src' value='http://all-terra.ru/stuff/screencast/zdscreencast.swf' /><param name='bgcolor' value='#1a1a1a' /><param name='quality' value='best' /><param name='allowScriptAccess' value='always' /><param name='allowFullScreen' value='true'/><param name='scale' value='showall' /><param name='flashVars' value='autostart=false' /></object>");
		},
	onFailure: function() {
		$('Popupgd').set('html', '<p><img src=http://all-terra.ru/images/img/failure.png />&nbsp;Ошибка при выполнении запроса.</p>');
	}

}); 

function myAJAXSendRequest() {
myAJAXRequest.send();
}