changeAboutEng = function(n) {
	var r;
	r = Math.random();
	url = "/UI/Handlers/SpeakAboutEng.ashx?" + r;
	ajaxGET(url, abouteng);
}

function abouteng() {
	if (xmlHttp) {
		if (xmlHttp.readyState == 4) {
			if (xmlHttp.responseText) {
				try {
					document.getElementById('aboutengid').innerHTML = xmlHttp.responseText;
				}
				catch(err) {
					
				}
			}
			else {
			}
		}
	}
	else {
	}
}

init = function () {
    if(document.getElementById('iam1')!=null) {	
	    addEvent(_conf, 'click', function() {		
	    })	
    }
    changeAboutEng(1);
    try {}
    catch (err) {}
}
addEvent(window,'load',init);