// dmonitor.js (c) 2006, asknet AG (rwm)
// Version 1.0.06.09.01
// 1.0.06.09.01 rwm initial version

function checkDesignWidth() {
  var e = document.getElementById('shopBody');
  if ( e ) {
    var w = e.offsetWidth;
    if ( sysDesignWidth > 0 && w != sysDesignWidth ) {
      var agent = navigator.userAgent.replace(/&/g,'%26');
      var os=navigator.platform;
      sysAlert('DesignWidth:'+sysDesignWidth+'/'+w+' '+os+' '+agent); 
    }
  }
  return false;
}
