function openlockwindow(name, page, width, height, left, top, scrollbar){
	var child = window.open(page,name,'toolbar=no,location=no,directories=no,status=no,scrollbars='+scrollbar+',resizable=no,menubar=no,width='+width+',height='+height+',left='+left+', top='+top);
	child.focus();
}

function openwindow(name, page, width, height, left, top){
	var child = window.open(page,name,'toolbar=no,location=no,directories=no,status=yes,resizable=yes,scrollbars=yes,width='+width+',height='+height+',left='+left+', top='+top);
	child.focus();
}

// Função que abre os pops de cadastro -------------------------------------
function AbrePOP(nomejanela, arquivo, popHeigth, popWidth, MyScroll){
  var wWidth = screen.width;
  var wHeight = screen.height;
  var wLeft = parseInt((wWidth/2) - (popWidth/2));
  var wTop  = parseInt((wHeight/2) - (popHeigth/2));
  openlockwindow(nomejanela, arquivo, popWidth, popHeigth, wLeft, wTop, MyScroll);
}
