function QbDcTEST(s) {
	var d = s.options[s.selectedIndex].value;
	if (d != "null") {
		parent.location.href = d;
	}
	s.selectedIndex=0;
}
//-->

function bookmark() {
	if ((navigator.platform!="MacPPC") && (navigator.appName=="Microsoft Internet Explorer") && (navigator.appVersion>="4")) {
		window.external.AddFavorite(location.href, document.title);
	}
	else {
	alert ('Press CTRL + D to Bookmark this page');
	}
}

function SelectAll(TextArea1) {
	
	document.all[TextArea1].focus()
	document.all[TextArea1].select()
	
}