// JavaScript Document
function alertSize() {
document.getElementById('modalArea').style.display="block";
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  //window.alert( 'Width = ' + myWidth );
  //window.alert( 'Height = ' + document.body.clientHeight);
  document.getElementById('modalArea').style.height=document.body.clientHeight+"px";
//pageModalOpen();
}
function productModelOpen(){
	alertSize();
	document.getElementById('products').style.display="block";
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		var newTop  = document.body.scrollTop+20;
		
		document.getElementById('products').style.top = newTop + "px";
		//alert("You're at " + document.body.scrollTop + " pixels.");
	}else{
		var new_top = window.pageYOffset+20;
		document.getElementById('products').style.top = new_top + "px";
		//alert(document.getElementById('gallery').style.top = window.pageYOffset + "px");
	}
	//var left = (screen.width-document.getElementById('products').offsetWidth)/2;
	//document.getElementById('products').style.left = left + "px";
}

function productModelOpenx(aa){
	//alert(aa);
	alertSize();
	//str2=document.getElementById('aa').value;
	document.getElementById('productss'+aa).style.display="block";
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		var newTop  = document.body.scrollTop+20;
		
		document.getElementById('productss'+aa).style.top = newTop + "px";
		//alert("You're at " + document.body.scrollTop + " pixels.");
	}else{
		var new_top = window.pageYOffset+20;
		document.getElementById('productss'+aa).style.top = new_top + "px";
		//alert(document.getElementById('gallery').style.top = window.pageYOffset + "px");
	}
	//var left = (screen.width-document.getElementById('products').offsetWidth)/2;
	//document.getElementById('products').style.left = left + "px";
}


	function appClose()
	{
		
		document.getElementById('modalArea').style.display="none";
		document.getElementById('products').style.display="none";		
		
		}
		
		
		function apppClose(aa)
	{
		
		document.getElementById('modalArea').style.display="none";		
		document.getElementById('productss'+aa).style.display="none";
		
		}
