function hide()
{
	var IE4 = (navigator.appVersion.indexOf("MSIE 4.")==-1)? false : true;
	var IE5 = (navigator.appVersion.indexOf("MSIE 5.")==-1) ? false : true;
	var IE6 = (navigator.appVersion.indexOf("MSIE 6.")==-1) ? false : true;
	var IE7 = (navigator.appVersion.indexOf("MSIE 7.")==-1) ? false : true;
	if(IE4 || IE5 || IE6 || IE7)
	{
		var obj1 = document.getElementById("social");
		obj1.style.visibility = 'hidden';
	}
}
