function FirstAlt() {
	var sJSMetaDesc = "";
	
	if (document.all) {
		for (var i = 0; i < document.all.length; i++) {
		    if (document.all(i).tagName.toLowerCase() == 'meta' && document.all(i).name.toLowerCase() == 'description') {
				sJSMetaDesc = document.all(i).content;
				break;
			}
		}
	}
	
	return sJSMetaDesc;
}