// JavaScript Document

function abreJanela(nome,url,largura,altura){
 NewWindow=window.open(url,nome,'width='+largura+',height='+altura+',left=100,top=100,resizable=No');
}