// JavaScript Document
function popup(URLStr, left, top, width, height){
	popupwindow = open(URLStr, 'popUpWindow_dois', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
