function SelectAll(id)
{
	var browserName=navigator.appName; 
	if (browserName=="Netscape")
	{ 
		var selection = window.getSelection();
		var range = document.createRange();
		range.selectNodeContents(document.getElementById(id));
		selection.removeAllRanges();
		selection.addRange(range);
	}
	else if (browserName=="Microsoft Internet Explorer")
	{
		var range = document.body.createTextRange();
		range.moveToElementText(document.getElementById(id));
		range.select();
	}
	else if(browserName=="Safari")
	{
		alert("This browser does not support the 'Select All' functionality. I'm sorry, but you will have to highlight the text manually.");
	}
	else
	{
		alert("This browser does not support the 'Select All' functionality. I'm sorry, but you will have to highlight the text manually.");
	}
}
