// window Java Document

<!--

function popUp(URLStr, left, top, width, height) {
  window.open(URLStr, null, '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+'');
}

function popUp_scroll(URLStr, left, top, width, height) {
  window.open(URLStr, null, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function popUp_toolbar(URLStr, left, top, width, height) {
  window.open(URLStr, '', 'toolbar=yes,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function popUp_menubar(URLStr, left, top, width, height) {
  window.open(URLStr, '', 'toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function newWindow(URLStr, left, top, width, height) {	
 window.open(URLStr, '', 'toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');  
}

function reSizeWindow(width, height) {
  
  if( typeof( window.innerWidth ) == 'number' ) {
	//Non-IE
	window.innerWidth = width;
	window.innerHeight = height;
	
  } 
  else {
	  
	//IE 6+ in 'standards compliant mode'
	self.resizeTo(width, height);
	
  }
  
}

//-->
