if (screen.width<640||screen.height<480)
window.location.href='http://wap.neotriad.com';

function AbreJanela(file, window, larg,  altura){
    msgWindow=open(file,window,'width=' + larg + ',height='  + altura + ',top=0,left=0');
    msgWindow.focus();
    msgWindow.moveTo(screen.width/2-larg/2,screen.height/2-altura/2-20);
}

function showHideLogin(action){
	var ac = action;
	if(ac == 'open'){
	document.getElementById("div_login_closed").style.visibility = 'hidden';
	document.getElementById("div_login_closed").style.display = 'none';
	document.getElementById("div_login_open").style.visibility = '';
	document.getElementById("div_login_open").style.display = '';
	}
	
	if(ac == 'close'){
	document.getElementById("div_login_closed").style.visibility = '';
	document.getElementById("div_login_closed").style.display = '';
	document.getElementById("div_login_open").style.visibility = 'hidden';
	document.getElementById("div_login_open").style.display = 'none';
	}
}

function validaScript() {
try {
replaceTags(document.getElementById("tx_dc_email"));
replaceTags(document.getElementById("tx_dc_senha"));
replaceTags(document.getElementById("ic_lembrar_senha"));
} catch (e) {
return true;
}
return false
}
function replaceTags(elemento) {
elemento.value = elemento.value.replace(/</g, "&lt;");
elemento.value = elemento.value.replace(/>/g, "&gt;");
elemento.value = elemento.value.replace(/['\'']+/g, "&apos;");
elemento.value = elemento.value.replace(/["\""]+/g, "&#x22;");
elemento.value = elemento.value.replace(/[)]+/g, "&#x29;");
elemento.value = elemento.value.replace(/[(]+/g, "&#x28;"); 
}

