var ajx_request;
function YTFL_loadpane(tags,align)
{
	var url=Guitar_getBasehref() + "/ajax/YTFL_showpane.php?tags=" + tags + "&align=" + align;

	if(window.XMLHttpRequest)
	{

		ajx_request = new XMLHttpRequest();
	} 
	else if(window.ActiveXObject)
	{

		ajx_request = new ActiveXObject("Microsoft.XMLHTTP");
	}
	ajx_request.open("GET", url, true);
	ajx_request.onreadystatechange = YTFL_paneloadaction;
	ajx_request.send(null);
}

function YTFL_paneloadaction() 
{
	
	if(ajx_request.readyState == 4){
		if(ajx_request.status == 200){ 
			response = ajx_request.responseText;
			Guitar_returnObjByID('HTML_YTFL').innerHTML=response;
		}
	}
}