function ShowDiv(divId) {
	document.getElementById(divId).style.display = 'block';
	if (navigator.appName == "Microsoft Internet Explorer") {
	    document.getElementById(divId).style.margin = '-6px -1px';
	}
	else {
		document.getElementById(divId).style.margin = '-6px -1px';
	}
	
}

function HideDiv(divId) {
	document.getElementById(divId).style.display = 'none';
}
