window.onload = _get;

function _get()
{
	for(x=0;x<window.frames.length;x++)
	{
		var frame = window.frames[x].document.body;
		frame.innerHTML = "<a href='http://www.revistasvip.com' target='_blank'><img src='" + lnkArr[x] + "' onload='parent._setsize(this, " + x + ");' galleryimg=no border=0></a>";
		frame.style.margin = "0";
	}
}

function _setsize(obj, id)
{
	document.getElementById("frame_" + id).style.width  = obj.width;
	document.getElementById("frame_" + id).style.height = obj.height;
	document.getElementById("frame_" + id).setAttribute("style","width: " + obj.width + "px; height: " + obj.height + "px;");
}

function validateIt()
{
	var f = document.frmBusca;
		
	if(f.elements['busca'].value.length < 3)
	{
		alert("O campo Busca é muito curto, por favor verifique e tente novamente.");
		f.elements['busca'].focus();
		return (false);
	}
	
	return (true);	
}

function chkFrm()
{
	var f = document.frm_comment;
		
	if(f.elements['titulo'].value.length < 3)
	{
		alert("O campo Título é obrigatório.");
		f.elements['titulo'].focus();
		return (false);
	}
	
	if(f.elements['msg'].value.length < 3)
	{
		alert("O campo Mensagem é obrigatório.");
		f.elements['msg'].focus();
		return (false);
	}
	
	return (true);	
}