﻿// JScript File
/*
    This File is solely property of Ecommind.com
*/

//////////////////////// Common global variables ////////////////////////

// setup test for browser
var isNav = (window.navigator.appName.toLowerCase().indexOf("netscape")>=0);
var isIE = (window.navigator.appName.toLowerCase().indexOf("microsoft")>=0);
var userAgent = navigator.userAgent;
var navType = "IE";
var nav70 = false;
var nav8 = false;

// This function used to Show/Hide the DIV TAGS
function showhide(f,laye)
{
	if (f) { visi="" }
	else { visi="none" }
		if(document.layers)
		{
			a=eval("document."+laye+".style.display")
			a=visi;
		}
	
		else
		{
 		    document.getElementById(""+laye+"").style.display=visi;
 		}
	 
}

//function noScrollIE()
//{
//    document.body.style.overflow="hidden";
//    alert("IE-No");
//}
//function scrollIE()
//{
//    document.body.scroll="yes";
//   // alert("IE");
//}
//function noScrollNS()
//{
//    document.width= window.innerWidth;
//    document.height=window.innerHeight;
//}
//function scrollNS()
//{
//    document.width=1000;
//    document.height=1000;
//}

// 