// JavaScript Document
// Elison S. [wdsync@hotmail.com] 
// Web em Segundos [www.webemsegundos.com.br] 
///////////////////////////////////////////////////

//window.onload = function(){
		//document.getElementById('carregando').style.display='none';
		//document.getElementById('osite').style.display='block';
		
		//Se quizer que a pagina carregue depois de um tempo determindado descoment
	//	setTimeout(function(){document.getElementById('carregando').style.display='none';document.getElementById('osite').style.display='block';}, 3000);
//	}

function abrir_fechar(url, titulo, altura){
	var closed = document.getElementById('box_ajax');
	var urlDefault = "loading.html"; // Carregar Loading...
	if(closed == 1){
		closed.style.display = 'none'
		document.getElementById('textfechar').style.display = 'none';
		} else {
			
			//Fechar id
			(closed.style.display == 'none')? closed.style.display = 'block' : closed.style.display = 'none'; 
			conteudodastring = '<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td class="box_c_conteudot">';
			conteudodastring += '<div class="box_c_left"></div><div class="box_c_meio"><b>';
			conteudodastring += titulo;
			conteudodastring += '</b></div><div class="box_c_right">';
			conteudodastring += '<a href="javascript:void(0)" id="fechar" onclick="abrir_fechar(1);"><span id="textfechar">Fechar!</span></a></div>';
			conteudodastring += '</td></tr><tr><td><div class="box_a_cont"><div class="box_b_cont">';
			conteudodastring += '<iframe src='+urlDefault+' allowtransparency=true scrolling=no name=box id=box style=margin:0px;width:100%;'+ altura +'; frameborder=no></iframe>';
			//conteudodastring += '';
			conteudodastring += '</div></div></td></tr><tr><td class="box_d_conteudot">';
			conteudodastring += '<div class="box_d_left"></div><div class="box_d_meio">&nbsp;</div><div class="box_d_right"></div></td></tr></table>';
			closed.innerHTML = conteudodastring;
			window.setTimeout(function(){document.getElementById('box').src=url;}, 600); //Carregar pagina solicitada

			}
}

//Exibir Box da foto
function ex(id, texto){
	dog = document.getElementById(id);
	idmouse = document.getElementById(id+'a');
	if(dog.style.display == 'none'){
		dog.style.display = 'block';
		idmouse.onmouseout = function(){dog.style.display = 'none';}
		} else {
			dog.style.display = 'none';
			}
}
