//Az AJAX technikához tartozo függvények
var xmlHttp;
var melyikFlash;

function GetXmlHttpObject()
	{
	var xmlHttp=null;
	try
  		{
		xmlHttp=new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari
		} 
		catch (e)
  			{
  			try 
    				{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
				}
  				catch (e)
    					{
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
					}
  			}
	return xmlHttp;
	}  

function ajax_response() { 
	if (xmlHttp.readyState==4) {
		var str=xmlHttp.responseText;
		while (str.indexOf("-->")>0) {
			str=str.substring(str.indexOf("-->")+3);
		}  
		/*alert(str);
		var str2="";
		var i=0;
		alert(seg);
		while (i<=str.length) {
			if (str[i]=="|") {
				str2+='\\"';
			} else str2+=str[i];
			i++;
		}  */		
		//alert(melyikFlash);
		if (melyikFlash=="wellness") {
			var htmlText="<embed  FlashVars=\"htmlText="+str+"\" loop=\"false\" width=\"490\" height=\"300\" src=\"../../../../content_images/1/swf/wellnes.swf\" type=\"application/x-shockwave-flash\"/>";
		} else if (melyikFlash=="dayspa") {
			var htmlText="<embed  FlashVars=\"htmlText="+str+"\" loop=\"false\" width=\"490\" height=\"220\" src=\"../../../../content_images/1/swf/dayspa.swf\" type=\"application/x-shockwave-flash\"/>";
		}
		$('aphSpa_flash').innerHTML=htmlText;		
	}
} 

function flash_kirakas(CategoryID) {

	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Your browser doesn't support AJAX technology!");
		return;
	} 
	var url;
	url="../../../../includes/display/ajax_flashHTML_lekeres.php?cid="+CategoryID+"&sid="+Math.random();
	xmlHttp.onreadystatechange=ajax_response;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
	
}
		
//Az oldal betöltésekor aktiválódó függvények	
window.onload=function() {

	var i=0;
	
	while ($('aphSpa'+i)) {
		$('aphSpa'+i).catID=$('aphSpa'+i).name;
		melyikFlash=$('aphSpa'+i).title;
		$('aphSpa'+i).onclick=function () {
			flash_kirakas(this.catID);
		}
		i++;
	}

}

