function toggledisplay(id) {
	if (!document.getElementById) return;
	obj = document.getElementById(id);
	if (!obj) return;
	var d = 'none';
	if (obj.style.display!='block') d = 'block';
	obj.style.display = d;
}

function capitalize(instr){
	return instr.toUpperCase();
}

function printArticle(){
	pw = window.open('printArticle.asp' + self.location.search,'print','toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,width=300,height=300');
}

function printList(){
	pw = window.open('printList.asp' + self.location.search,'print','toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,width=300,height=300');
}