/*

var browserName=navigator.appName; 
var browserCodeName=navigator.appCodeName;
var browserVer=navigator.appVersion;
var browserUserAgent=navigator.userAgent;



function show_scroll(id, w)
{
	if (browserName=="Netscape")
	{ 
 		document.getElementById(id).style.overflow = 'auto';
		document.getElementById(id).style.width = w + 'px';
	}
	else 
	{ 
 		if (browserName=="Microsoft Internet Explorer")
 		{
  		document.getElementById(id).style.overflow = 'auto';
		//document.getElementById(id).style.width = w + 'px';
 		}
 		else
  		{
    	document.getElementById(id).style.overflow = 'auto';
		//document.getElementById(id).style.width = w + 'px';
   		}
	}
}

function hide_scroll(id, w)
{
		if (browserName=="Netscape")
	{ 
 		document.getElementById(id).style.overflow = 'hidden';
		document.getElementById(id).style.width = w + 'px';
	}
	else 
	{ 
 		if (browserName=="Microsoft Internet Explorer")
 		{
  		document.getElementById(id).style.overflow = 'hidden';
		//document.getElementById(id).style.width = w + 'px';
 		}
 		else
  		{
    	document.getElementById(id).style.overflow = 'hidden';
		//document.getElementById(id).style.width = w + 'px';
   		}
	}
}

*/






 
function show_scroll(id, w)
{
	document.getElementById(id).style.overflow = 'auto';
	document.getElementById(id).style.width = w + 'px';
}
function hide_scroll(id, w)
{
	document.getElementById(id).style.overflow = 'hidden';
	document.getElementById(id).style.width = w + 'px';
}
 
