// JavaScript Document


var html='<div id="fade" class="black_overlay"></div><div id="light" class="white_content"><a href="javascript:void(0)" onclick="fechar()" class="close"><img src="http://www.unideia.com/projetos/trofeutalento/templates/htm/trofeutalento_v1/img/bt_fecharpop.gif" style="position:absolute; top:40px; right:20px;" border="0" /></a><br/>';
function abrir(h, v, pag){
	document.getElementById('light').style.display='block';
	document.getElementById('fade').style.display='block';
	document.getElementById('frame').style.height=v;
	document.getElementById('frame').style.width=h;
	window.open(pag, 'frame');
}
function fechar(){
	document.getElementById('light').style.display='none';
	document.getElementById('fade').style.display='none';
	window.open('x.html', 'frame');
}