// JavaScript Document
  
function openSizingWindow( )    {
  
  var targetName = "sizing"; 
  var newWindowHeight = 408;
  var newWindowWidth = 490;
  var halfWidth = newWindowWidth/2;
  var halfHeight = newWindowHeight/2;
  var iMyWidth;
  var iMyHeight;
  
  iMyWidth = (window.screen.width/2) - (halfWidth + 10);
  iMyHeight = (window.screen.height/2) - (halfHeight + 50);
  
  var status = "status,height="+ newWindowHeight+",width="+newWindowWidth;

  if( targetName.closed == false )
    {
      targetName.close();
    }
  var sizingWindow = window.open("images/sizingchart.gif", targetName, status +", resizable=yes, left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");

  sizingWindow.focus();
}

  
function openPressWindow( )    {
  
  var targetName = "press"; 
  var newWindowHeight = 408;
  var newWindowWidth = 490;
  var halfWidth = newWindowWidth/2;
  var halfHeight = newWindowHeight/2;
  var iMyWidth;
  var iMyHeight;
  
  iMyWidth = (window.screen.width/2) - (halfWidth + 10);
  iMyHeight = (window.screen.height/2) - (halfHeight + 50);
  
  var status = "status,height="+ newWindowHeight+",width="+newWindowWidth;

  if( targetName.closed == false )
    {
      targetName.close();
    }
  var pressWindow = window.open("images/Littlesteps_ToddlerToes_150.jpg", targetName, status +", resizable=yes, left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");

  sizingWindow.focus();
}

  
function openSizingFall06Window( )    {
  
  var targetName = "sizingfall06"; 
  var newWindowHeight = 460;
  var newWindowWidth = 590;
  var halfWidth = newWindowWidth/2;
  var halfHeight = newWindowHeight/2;
  var iMyWidth;
  var iMyHeight;
  
  iMyWidth = (window.screen.width/2) - (halfWidth + 10);
  iMyHeight = (window.screen.height/2) - (halfHeight + 50);
  
  var status = "status,height="+ newWindowHeight+",width="+newWindowWidth;

  if( targetName.closed == false )
    {
      targetName.close();
    }
  var sizingWindow = window.open("images/TipsieToesSizeChart-measure.gif", targetName, status +", resizable=yes, left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");

  sizingWindow.focus();
}

