<!--
function switchiid(id){
	hideallimageids();
	showimagediv(id);
}

function switchtid(id){
	hidealltextids();
	showtextdiv(id);
}

function hideallimageids(){
	for (var i=0;i<imageids.length;i++){
	hideimagediv(imageids[i]);
	}
}

function hidealltextids(){
	for (var x=0;x<textids.length;x++){
	hidetextdiv(textids[x]);
	}
}

function hideimagediv(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 hidetextdiv(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 showimagediv(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 showtextdiv(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 clickclear(thisfield, defaulttext) {
	if (thisfield.value == defaulttext) {
	thisfield.value = "";
	}
}
function clickrecall(thisfield, defaulttext) {
	if (thisfield.value == "") {
	thisfield.value = defaulttext;
	}
}
-->


