// JavaScript Document
window.onload = init;
function init() {
  if (window.Event) {
    document.captureEvents(Event.MOUSECLICK);
  }
  
}
function addflash1()
{showppt1();
document.getElementById('ppt').innerHTML="<object width='600' height='450'><param name='movie' value='presentation.swf'><embed src='presentation.swf' width='600' height='450'></embed></object>";   }
function addflash2()
{
	showppt2();
	document.getElementById('ppt').innerHTML="<br><br><object width='352' height='330'><param name='movie' value='vid/tourism-in-india.swf'><EMBED src='vid/tourism-in-india.swf'  WIDTH='352' HEIGHT='330'></EMBED></embed></object> <br><br> <span class='heading'>Please wait while the video loads ....</span>";
	}

function showppt1 ()
{
	var d= document.documentElement;
	var b= document.body;
	var wh= b.parentNode.scrollHeight;
	var whchromefix = b.scrollHeight;
	if(wh<100){wh=whchromefix;}
	var ww= b.offsetWidth;
	//alert(wh);

document.getElementById('layblack').style.height=wh+"px";
 //document.getElementById('ppt').style.top=200+"px";
document.getElementById('ppt').style.top=(wh/2)-200+"px";
 document.getElementById('ppt').style.left=(ww/2)-300+"px";
 document.getElementById('layblack').style.display ="block";
  document.getElementById('ppt').style.display ="block";
  
  
}
function showppt2 ()
{
	var d= document.documentElement;var b= document.body;var wh= b.parentNode.scrollHeight;var whchromefix = b.scrollHeight;
	if(wh<100){wh=whchromefix;}	var ww= b.offsetWidth;
document.getElementById('layblack').style.height=wh+"px";
document.getElementById('ppt').style.top=(wh/2)+"px";
 document.getElementById('ppt').style.left=(ww/2)-300+"px";
 document.getElementById('layblack').style.display ="block";
  document.getElementById('ppt').style.display ="block";
 }
function closeppt()
{
	document.getElementById('layblack').style.display="none";document.getElementById("ppt").style.display ="none";
}
