// JavaScript Document
/*
// Flash
*/
function Evflash(str) {
	document.write(str);
}

/*
// Pega elemento por classe
*/
var allHTMLTags = new Array();	
function mudaTodos(classeon,classeoff) {
	//Cria Array com todas as TAGS HTML
	var allHTMLTags=document.getElementsByTagName("*");
	//Passa por todas as tags usando um FOR
	for (i=0; i<allHTMLTags.length; i++) {
		//Pega todas as tags com a classe passada na função.
		if ((allHTMLTags[i].className==classeon)){
		allHTMLTags[i].className='fechado';
		}									
	}
}

function AbreSubMenu(submenu){
	document.getElementById(submenu).style.display = 'block';
}

function FechaSubMenu(submenu){
	document.getElementById(submenu).style.display = 'none';
}

// Tira foco do campo e reseta value padrão se necessário
function Blurr(campo, defaultvalue){
	campo.style.border='1px solid #ea2429';
	if (defaultvalue != "" & campo.value == "") {
	 campo.value = defaultvalue;
	}
}

// Dá foco no campo e limpa o value se necessário
function Focuss(campo, defaultvalue){
	campo.style.border='1px solid #a00000';
	if (defaultvalue != "" & campo.value == defaultvalue) {
	 campo.value = "";
	}
}

// ChatOnline
function opener(){
w = 130;
h = 206;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,noresizable';

window.open('http://www.ecompleto.com.br/loja/chatonline/belloscar/chatonline.html','_blank',settings);
}
