
function linksparser_onLoad ()
{
	//	var tags = utils_getTags ('a');
	//	for (i = 0; i < tags.length; i ++)
	//	{
	//		var tag = tags[i];
	//		var k_scope = String(tag.getAttribute('k_scope'));
			//==================================
	//		if (k_scope != "null")
	//		{
				//	tag.onclick = function () { if (isAjax ()) { href2ajax(this); return false;}}
	//		}
			//==================================
	//	}
	initLightbox();
	try 
	{
		loadGmap ();
	} 
	catch (e)
	{
		
	}
}

function href2ajax (href)
{
	prelaod_show ();
	var url = href.getAttribute('href');
	var scope = href.getAttribute('k_scope');	
	utils_xmlhttpPost (url, getURL_response, scope);
}

function getURL_response (src, layer)
{
	document.getElementById (layer).innerHTML = src;
	preload_hide ();
	linksparser_onLoad (); 
}