function openwin(theURL,pwidth,pheight) { 
  window.open(theURL,'','scrollbars=yes,left='+(window.screen.width-pwidth)/2+',top='+(window.screen.height-pheight)/2+',width=' + pwidth + ',height=' + pheight);
}