/**
Quando o usuárior clica no campo, limpa o campo e/ou
reescreve o texto. 
Texto: texto que deve ficar dentro do botao
Campo: campo
Tipo: tipo do campo para trocar.
*/

function limparNoFocus(texto, tipo, campo)
{
	if(campo.value == texto)
	{
		campo.value = '';
	}
}

function escreverNoBlur(texto, tipo, campo)
{
	if(campo.value == "")
	{
 		campo.value = texto;	
	}
}

// When the page loads: 
function onloadObject(){ 
	if (document.getElementsByTagName) { 
	// Get all the tags of type object in the page. 
	var objs = document.getElementsByTagName("object"); 
		for (i=0; i<objs.length; i++) { 
		// Get the HTML content of each object tag 
		// and replace it with itself. 
		objs[i].outerHTML = objs[i].outerHTML; 
		} 
	} 
} 

// When the page unloads: 
function onunloadObjects() { 
	if (document.getElementsByTagName) { 
		//Get all the tags of type object in the page. 
		var objs = document.getElementsByTagName("object"); 
		for (i=0; i<objs.length; i++) { 
		// Clear out the HTML content of each object tag 
		// to prevent an IE memory leak issue. 
		objs[i].outerHTML = ""; 
		} 
	} 
} 
