
PopupHelper = {
  fileName: '#',
  defaultWidth: 300,
  defaultHeight: 300,
  defaultShipTo:'US',
  defaultLangId:'2057',
  open_window:function(fileName, width, height, shipTo,langId ) {
     window.open('/popups/' + fileName + '?LangID=' + langId + '&ShipTo=' + shipTo, 'PopUp', 'status=no,width='+ width + ',height='+ height+ ',scrollbars=auto');
  },
  open_window_ext:function(filename,width,height){
     window.open(filename , 'PopUp', 'status=no,width='+ width + ',height='+ height+ ',scrollbars=auto');
  },
  open_window_with_scroll:function(filename,width,height){
     window.open(filename , 'PopUp', 'status=no,width='+ width + ',height='+ height+ ',scrollbars=yes');
  }

}
/*
PopupHelper.open_window("http://www.whatever.com/", PopupHelper.defaultWidth, 600);
*/



