﻿// JScript File
function OpenService(id)
{
    var panel = document.getElementById("tablePanel");
    var buttons = document.getElementById("tableButtons");
    panel.style.display = "block";
    buttons.style.display = "none";
	var url = "http://www.alqabas.com.kw/Services/" + id + ".aspx";
	if (document.getElementById('serviceFrame'))
	{
		document.getElementById('serviceFrame').contentWindow.location.replace(url);
	}
}
function CloseService()
{
    var panel = document.getElementById("tablePanel");
    var buttons = document.getElementById("tableButtons");
    panel.style.display = "none";
    buttons.style.display = "block";
    var url = "Loading.htm";
	if (document.getElementById('serviceFrame'))
	{
		document.getElementById('serviceFrame').contentWindow.location.replace(url);
	}
}
function calcHeight()
{
  //find the height of the internal page
 
  var url = document.getElementById('serviceFrame').contentWindow.location.href;
  if (url.indexOf("Loading") < 0)
  {
      var the_height= document.getElementById('serviceFrame').contentWindow.document.body.scrollHeight;
      //change the height of the iframe
      document.getElementById('serviceFrame').height= the_height + 2;
   }
   else
        document.getElementById('serviceFrame').height = "80px";
}
