function openWindow(windowURL,windowName,windowWidth,windowHeight) {
  window.name = 'parentWindow';
  newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',top=20,left=20,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0');
  newWindow.focus();
}

function resizeWindow(windowURL,windowName,windowWidth,windowHeight) {
  window.name = 'parentWindow';
  newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',top=20,left=20,toolbar=0,location=1,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1');
  newWindow.focus();
}

