<!--
function windowOpenSizeGuide() {
  var url = "/sizeguide.html";
  var name = "SizeGuide"
  var width = "530";
  var height = "325";
  var str = "height=" + height + ",innerHeight=" + height + ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
	str += ",scrollbars=0";
  }
  var win = name
  win = window.open(url, name, str);
}
// -->