function popUp(theURL,theWidth,theHeight,theScroll,theResize) {
var theProperties = 'width=' + theWidth +',height=' + theHeight + ',scrollbars=' + theScroll + ',resizable=' + theResize+',top=0,left=0';
  popUpWindow = window.open(theURL,'',theProperties)
}
