function getBrowserCode()
{
	var bname = navigator.appName;
	if (bname == "Microsoft Internet Explorer")
	{	
		return "IE";
	}
}

function hideScrollbar()
{
	if(getBrowserCode() == "IE")
	{
		var htmlElm = document.getElementsByTagName("body");
		//console.log(htmlElm[0]);
		htmlElm[0].style.overflow = "hidden";
	}
}

function showScrollbar()
{
	if(getBrowserCode() == "IE")
	{
		var htmlElm = document.getElementsByTagName("body");
		//console.log(htmlElm[0]);
		htmlElm[0].style.overflow = "visible";
	}
}
