function setResolution()
{
	var liMenu    = document.getElementById('opcoesMenu');
	var principal = liMenu.parentNode;
	var priLi     = principal.firstChild;

	document.getElementById('tituloMenu').style.width = '50%';
	principal.removeChild(liMenu);
}

// JavaScript Document

function popup(pagina, largura, altura) {
   // Definindo meio da tela
   var esquerda = (screen.width - largura)/2;
   var topo = (screen.height - altura)/2;

   // Abre a nova janela
   window.open(pagina,'','height=' + altura + ', width=' + largura + ', top=' + topo + ', left=' + esquerda);
}



// JavaScript Document

function fechar_galeria()
{
    document.getElementById('fundo_galeria').style.visibility='hidden';
    document.getElementById('detalhefoto').style.visibility='hidden';
    document.getElementById('carrega').style.visibility='hidden';
    document.getElementById('nao_assinante').style.visibility='hidden';
}


function foto(foto)
{
	if (screen.width == 600) {
		document.getElementById('fundo_galeria').style.height='425px';

	} else if (screen.width == 1024) {
		document.getElementById('fundo_galeria').style.height='605px';

	} else {
		document.getElementById('fundo_galeria').style.height='1000px';
	}

    document.getElementById('fundo_galeria').style.visibility='visible';
    document.getElementById('carrega').style.visibility='visible';
    cp.call('http://www.lesexy.com.br/ajax/galeria.php',
            'foto',
            retorno_galeria,
            foto,
            document.getElementById('pasta').value,
            document.getElementById('qtd_fotos').value);
}

function retorno_galeria(result)
{
    if(result != '') {
        var lista = result.split('|');
        document.getElementById('detalhefoto').style.visibility='visible';
        document.getElementById('detalhefoto').innerHTML  = lista[0];
        document.getElementById('qtd_fotos').value        = lista[1];
    } else {
        alert('Erro');
    }
    document.getElementById('carrega').style.visibility='hidden';
}



function foto2(foto)
{
	if (screen.width == 600) {
		document.getElementById('fundo_galeria').style.height='425px';

	} else if (screen.width == 1024) {
		document.getElementById('fundo_galeria').style.height='605px';

	} else {
		document.getElementById('fundo_galeria').style.height='1000px';
	}

    document.getElementById('fundo_galeria').style.visibility='visible';
    document.getElementById('carrega').style.visibility='visible';
    cp.call('http://www.lesexy.com.br/ajax/galeria2.php',
            'foto',
            retorno_galeria2,
            foto,
            document.getElementById('pasta').value,
            document.getElementById('qtd_fotos').value);
}

function retorno_galeria2(result)
{
    if(result != '') {
        var lista = result.split('|');
        document.getElementById('detalhefoto').style.visibility='visible';
        document.getElementById('detalhefoto').innerHTML  = lista[0];
        document.getElementById('qtd_fotos').value        = lista[1];
    } else {
        alert('Erro');
    }
    document.getElementById('carrega').style.visibility='hidden';
}


function EnviarComentario(modelo_id)
{
    var comentario = document.getElementById('comentario').value;
    var email      = document.getElementById('email').value;

    if (comentario != '') {

    	document.getElementById('comentario').value = '';

    	cp.call('http://www.lesexy.com.br/ajax/comentario.php',
            'comentario',
            retorno_comentario,
            modelo_id,
            comentario,
            email);

    } else {
    	document.getElementById('comentario').style.border='solid 1px red';
    }
}


function EnviarComentario_nova(modelo_id)
{
    var comentario = document.getElementById('comentario').value;
    var email      = document.getElementById('email').value;

    if (comentario != '') {

    	document.getElementById('comentario').value = '';

    	cp.call('http://www.lesexy.com.br/ajax/comentario.php',
            'comentario_nova',
            retorno_comentario,
            modelo_id,
            comentario,
            email);

    } else {
    	document.getElementById('comentario').style.border='solid 1px red';
    }
}

function retorno_comentario(result)
{
    if(result != '') {
        document.getElementById('textos_comentarios').innerHTML = result;
    } else {
        alert('Erro');
    }
}

function EnviarOpiniao(sexo)
{
    var opiniao = document.getElementById('opiniao').value;
    var email = document.getElementById('email_opiniao').value;

    if (opiniao != '') {

    	document.getElementById('opiniao').value = '';
    	document.getElementById('email_opiniao').value = '';

    	cp.call('http://www.lesexy.com.br/ajax/opiniao_assine.php',
            'opiniao_assine',
            retorno_opiniao_assine,
            sexo,
            opiniao,
            email);

    } else {
    	document.getElementById('opiniao').style.border='solid 1px red';
    }
}

function retorno_opiniao_assine(result)
{
    if(result != '') {
        document.getElementById('opiniao_assine').innerHTML = result;
    } else {
        alert('Erro');
    }
}

var imagem = new Image();

imagem_lista = Array('http://www.lesexy.com.br/imagens/fd_login_assine.jpg');
imagem_qtd = imagem_lista.length;

for (i = 0; i < imagem_qtd; i++) {
    var preload = new Image();
    preload.src = imagem_lista[i];
}

var bookmarkurl=document.location
var bookmarktitle=document.title
function AddBookmark(){

	if (window.sidebar) window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
    else if(window.opera && window.print){
        var mbm = document.createElement('a');
        mbm.setAttribute('rel','sidebar');
        mbm.setAttribute('href',bookmarkurl);
        mbm.setAttribute('title',bookmarktitle);
        mbm.click();
    }
    else if(document.all){window.external.AddFavorite(bookmarkurl, bookmarktitle);}
}

var cp = new cpaint();
cp.set_transfer_mode('get');
cp.set_persistent_connection(true);
cp.set_response_type('text');