	function Redimenciiona()
	{
		var Altura = document.body.clientHeight;		
		parent.document.getElementById('Display').height = Altura + 20;
	}
	function Redimenciona()
	{
		var Altura = parent.document.getElementById('Display').height		
		parent.document.getElementById('Display').height = 270;
	}	


function Verifica(Form)
{
	for(var i = 0; i < Form.length; i++)
	{
		if((Form[i].xdisplay !="")&&(Form[i].value == ""))
		{
			alert("O campo "+Form[i].xdisplay+" não pode estar em branco.");
			Form[i].focus();
			return false;
		}
	}
	return true;	
}

function FormataFone(Campo) 
{ 	
   	qtdcaracteres = (Campo.value).length; 
    if(qtdcaracteres == 0) 
       	Campo.value = "(" + Campo.value; 
    if(qtdcaracteres == 3) 
       	Campo.value = Campo.value + ") "; 
    if(qtdcaracteres == 9) 
       	Campo.value = Campo.value + "-"; 						
} 

function Tecla(e)
{
	if (document.all) // Internet Explorer
		var tecla = event.keyCode;
	else if(document.layers) // Nestcape
		var tecla = e.which;
	if (tecla > 47 && tecla < 58) // numeros de 0 a 9
		return true;
	else
	{
		if (tecla != 8) // backspace
			event.keyCode = 0;
					//return false;
		else
			return true;
	}
}

function BuscaVideo(Obj)
{
	location = 'buscavideo.php?Tipo=1&Busca=' + escape(Obj.value);	
}

function PesquisaVideo()
{
	location = 'buscavideo.php?Tipo=2&Busca=' + escape(document.getElementById('edBusca').value);	
}

function DisplayFoto(Foto)
{
	
	var Texto = "<table width='380' height='261' border='0' cellspacing='0' cellpadding='0' bgcolor='#EFEFEF'><tr bgcolor='#E67817'><td width='358'></td><td align='right' height='20' width='22' align='right'><a onclick='FechaDisplayFoto()' class='TextoLinkBranco' style='cursor:pointer;'>X</a></td></tr><tr><td colspan='2'><img src='fotos/"+Foto+"' border='0' /></td></tr></table>";
	
	document.getElementById('DisplayFoto').innerHTML = Texto;
	document.getElementById('DisplayFoto').style.display = 'block';
}

function FechaDisplayFoto()
{
	document.getElementById('DisplayFoto').style.display = '';
}

function DisplayFotos(Foto,Url)
{
	Img = Url+Foto;
	
	Picture = new Image();
	Picture.src=(Img);

	Lar = parseInt(Picture.width);
	Alt = parseInt(Picture.height)+22;
	x = parseInt((screen.width - Lar)/2)-100;
    y = parseInt((screen.height - Alt)/2)+100;
				   
	var Texto = "<table width='"+ Lar +"' height='"+ Alt +"' border='0' cellspacing='0' cellpadding='0' bgcolor='#EFEFEF'><tr bgcolor='#AFD655'><td width='"+ parseInt(Lar-22) +"'></td><td height='20' width='22' align='right'><a onclick='FechaDisplayFoto()' class='TextoLinkBranco' style='cursor:pointer;'>X</a></td></tr><tr><td colspan='2'><img src='"+Url+Foto+"' border='0' /></td></tr></table>";
	
	document.getElementById('DisplayFoto').innerHTML = Texto;
    document.getElementById('DisplayFoto').style.top = x;
    document.getElementById('DisplayFoto').style.left = y;	
	document.getElementById('DisplayFoto').style.width = Lar;
	document.getElementById('DisplayFoto').style.height = Alt;		
	document.getElementById('DisplayFoto').style.display = 'block';
}