var fonte = 'purple';
var texto = 'Seu nome aqui';
var cor = 'oooooo';

function selecionaFonte(id){
	document.getElementById(fonte).style.backgroundImage='url(image/selectOFF.gif)';
	document.getElementById(id).style.backgroundImage='url(image/selectON.gif)';
	document.getElementById("r" + id).checked = true;
	fonte = id;
	titulo();
	
}

function selecionaTexto(){
	texto = document.getElementById('texto').value;
	titulo();
	
}

function selecionaCor(valor, id){
	document.getElementById(id).value = valor;
	cor = valor;
	titulo();

}

function titulo(){
	document.getElementById('tituloPrev').src = "http://www.mysuperyes.com.br/home/include/" + fonte + "/" + cor + "/" + texto + ".php";
		
}