// JavaScript Document

function abrePopup(nome, widthTela, heightTela){
	var width = widthTela;
	var height = heightTela;
	var url = nome;
	
	document.open(url, 'popup', 'width='+width+', height='+height+', top=100, left=100, scrollbars=no, status=yes, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}
