<!--
function hideSet(id) {
	//safe function to hide an element with a specified id
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'none';
		}
		else { // IE 4
			document.all.id.style.display = 'none';
		}
	}
}

function showSet(id) {
	//safe function to show an element with a specified id
		  
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'block';
		}
		else { // IE 4
			document.all.id.style.display = 'block';
		}
	}
}

function changeTextSize(amount) {
	if (amount=="1") {
		if (document.getElementById) {document.getElementById('intMainCellTextBlock').style.fontSize = '11px';} else {document.all.intMainCellTextBlock.style.fontSize = '11px';}
	} else if (amount=="2") {
		if (document.getElementById) {document.getElementById('intMainCellTextBlock').style.fontSize = '14px';} else {document.all.intMainCellTextBlock.style.fontSize = '14px';}
		if (document.getElementById) {document.getElementById('intMainCellTextBlock').style.lineHeight = '18px';} else {document.all.intMainCellTextBlock.style.lineHeight = '18px';}
	} else if (amount=="3") {
		if (document.getElementById) {document.getElementById('intMainCellTextBlock').style.fontSize = '17px';} else {document.all.intMainCellTextBlock.style.fontSize = '17px';}
		if (document.getElementById) {document.getElementById('intMainCellTextBlock').style.lineHeight = '21px';} else {document.all.intMainCellTextBlock.style.lineHeight = '21px';}
	}
}

function formAccent(item) {
	item.style.color='#365072';
	item.style.borderColor='#365072';
	}
	
function formRestore(item) {
	item.style.color='#aec5d9';
	item.style.borderColor='#aec5d9';
	}
	
function visiToggle(id) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		pState = document.getElementById(id).style.display;
	}
	else {
		if (document.layers) { // Netscape 4
			pState = document.id.display;
		}
		else { // IE 4
			pState = document.all.id.style.display;
		}
	}
	
	if (pState=='none') {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById(id).style.display = 'block';
		}
		else {
			if (document.layers) { // Netscape 4
				document.id.display = 'block';
			}
			else { // IE 4
				document.all.id.style.display = 'block';
			}
		}
	} else {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById(id).style.display = 'none';
		}
		else {
			if (document.layers) { // Netscape 4
				document.id.display = 'none';
			}
			else { // IE 4
				document.all.id.style.display = 'none';
			}
		}
	}
}
// -->