
var browserVersion = navigator.appVersion;
var browserName = navigator.appName;

function openLogginDiv(usuario,senha){
	document.getElementById('glob').style.background = "#111111";
	document.getElementById('borderAll').style.opacity = "0.2";
	if(browserName.indexOf("MSIE") > -1){
		document.getElementById('borderAll').style.filter.alpha.opacity = "20";
	}
	if(browserName.indexOf("Firefox") > -1){
		document.getElementById('borderAll').style.MozOpacity = "0.2";
	}
	if(document.getElementById('sexyLoginBox') == null){
		url = "../../includes/addFormLogin.jsp";
		if(usuario != null && usuario != '' && senha != null && senha != ''){
			url += "?email="+usuario+"&senha="+senha;
		}
		goshme.util.sendRequest( url, "",'GET');
	}
	else{
		goshme.util.toogle('sexyLoginBox',true);
	}
}

function colocarForm(text){
	newDiv = document.createElement('div');
	
	newDiv.id = "sexyLoginBox";
	newDiv.className = "bordaBox";
	newDiv.style.position = "absolute";
	newDiv.style.left = (screen.width/2 - 275)+"px";
	newDiv.style.top = "35%";
	newDiv.style.zIndex = "1000";
	newDiv.style.width = "450px";
	
	newDiv.innerHTML = text;
	document.body.appendChild(newDiv);
	goshme.util.toogle('sexyLoginBox',true);
}

function closeSexyLoginBox(){
	document.getElementById('glob').style.background = "#F1F1F1";
	document.getElementById('borderAll').style.opacity = "1.0";
	if(browserName.indexOf("MSIE") > -1){
		document.getElementById('borderAll').style.filter.alpha.opacity = "100";
	}
	if(browserName.indexOf("Firefox") > -1){
		document.getElementById('borderAll').style.MozOpacity = "1.0";
	}
	goshme.util.toogle('sexyLoginBox',false);
}