// JavaScript Document
var xmlHttp;
var t;
var funcType;

function showSlider(cid,scid,story,lang,type)
{
document.getElementById("demo-wrapper").style.height = "960px";
document.getElementById("demo-inner").innerHTML="<div id='loader' style='height:61px; width:250px; display:block; border: 1px #AAAAAA solid; position:absolute; left:130px; top:150px; text-align:center; vertical-align:middle; z-index:1100;'>	<table border='0' cellspacing='10' cellpadding='0' width='100%' height='100%' class='preloader'> <tr> <td align='center' valign='middle'><img id='ImagePreloader' src='images/zz.png' width='58' height='43' alt='Loading' style='border-width:0px;'></td> <td align='center' valign='middle'><span id='LabelPreloader'><strong>Учитавање у току..</strong><br>Молимо Вас сачекајте..</span> </td> </tr> </table> </div>";
if (type.length==0)
  { 
  document.getElementById("demo-inner").innerHTML="<p>Error! No category and subcategory selected!</p>";
  return;
  }
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  }
//alert(str);
t=type;
if (type == 0) {
	funcType = 0;
} else {
	funcType = 1;
	
}

var url="getSlider.php";
url=url+"?cid="+cid;
url=url+"&scid="+scid;
url=url+"&story="+story;
url=url+"&lang="+lang;
//if ((cid="1") || (cid="2") || (cid="6") || (cid="14") || (cid="15") || (cid="18")) {
	//url=url+"&q="+Math.random();
//}
//alert(url);
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
} 

function stateChanged() 
{ 
if (xmlHttp.readyState==4)
{
lang = get("lang");
document.getElementById("demo-inner").innerHTML=xmlHttp.responseText;
var theDiv = document.getElementById("content");
var height = theDiv.offsetHeight;
//alert(height);
if (t==0) {
	if (height>960) {
	document.getElementById("demo-wrapper").style.height = height;
	document.getElementById("mainarea").style.height = height;
	document.getElementById("container").style.height = height+215+"px";
	} else {
	document.getElementById("demo-wrapper").style.height = "990px";
	document.getElementById("mainarea").style.height = "990px";	
	document.getElementById("container").style.height = "1205px";
	}
} else {
if (funcType == 1) {
	if (lang=="rs") {
		document.getElementById("demo-inner").innerHTML="<p>&nbsp; </p><p align='center'>Кликом на особу у заглављу добићете детаљније податке..</p>";
	}
	if (lang=="sr") {
		document.getElementById("demo-inner").innerHTML="<p>&nbsp; </p><p align='center'>Klikom na osobu u zaglavlju dobićete detaljnije podatke..</p>";
	}
}	
}
}
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
