function syncronising( text ) {
	console.debug('syncronising');
	//képernyõ elsötétítése
	proform.darkOverlay();
	
	if(is.ie6) {
	var selects = document.getElementsByTagName('select');
		
	console.debug(selects);

	var i=0;
	var len = selects.length;
	for(i; i<len; i++) {
		selects[i].style.visibility = 'hidden';
	}
	}
	
	
	console.debug('dark_ready');
	
	var over = document.getElementById('overlay');
	var body = document.body;
	
	var syncronising_ajaxload = document.createElement("div");
	syncronising_ajaxload.id = "syncronising_ajaxload";
	AlertposX = body.offsetWidth/2 - 40 + 'px';
	//syncronising_ajaxload.style.position = 'absolute';
	//syncronising_ajaxload.style.top = '300px';
	syncronising_ajaxload.style.left = AlertposX;
	over.appendChild(syncronising_ajaxload);


	var syncronising_text = document.createElement("p");
	syncronising_text.id = "syncronising_text";
	syncronising_text.innerHTML = text;
	over.appendChild(syncronising_text);
	
	console.debug(syncronising_text.style.width);

	AlertposX = body.offsetWidth/2 - syncronising_text.offsetWidth/1.6 + 'px';
	
	syncronising_text.style.left = AlertposX;
	
}
