/************************************
 **	 Begin: popup_windows.js
 ************************************/

// pop centered window
function newWindow(URL,pageName,w,h,scroll,resize,toolbar) {
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize+',toolbar='+toolbar+'';
  win = window.open(URL,pageName,settings);
 }
  
// pop centered window full screen
function newFullWindow(URL,pageName,w,h,scroll,resize,toolbar) {
  LeftPosition	= 0;// (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition	= 0; // (screen.height) ? (screen.height-h)/2 : 0;
  settings		= 'height='+screen.height+',width='+screen.width+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize+',toolbar='+toolbar+'';
  pageName		= pageName.replace(/[^a-zA-Z 0-9]+/g,'');
  newWindow		= window.open(URL,pageName,settings);
}
/************************************
 **	 End: popup_windows.js
 ************************************/

