function changeTitle(title){
	if (title != null) 
		document.getElementById('stitle').innerHTML=title;
	else
		document.getElementById('stitle').innerHTML='&nbsp;';

	return;		
}
	

function changeColor(state){
	if (state == 'on') { 
		document.getElementById('stitle').style.text='#DAA520';
	}
		
	if (state == 'off') {
		document.getElementById('stitle').style.color='#CCCCCC';
	}
	return;		
}

/*function prompter() {
	var reply = prompt("Hey there, good looking stranger!  What's your name?", "")
	alert (reply)
}*/