﻿// JScript File
function newWin(filename)
{
    var type='winImage';
    var winWidth=500;
    var winHeight=400;
   
    winSettings='menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,hotkey=no';
   
        var winSize=',width=' +winWidth+',height=' +winHeight;
		var winX=(screen.availWidth/2)-(winWidth/2); 
		var winY=(screen.availHeight/2)-(winHeight/2);
		var winPos=',left='+winX+',top='+winY;	
    
    theWindow=window.open(filename,type,winSettings+winSize+winPos);   
    theWindow.focus();   
}
function newWin2(styleNo)
{
    var winName='BuyWin';
    var url='http://www.thewideshoes.com/' + styleNo + '.html';
    
    theWindow=window.open(url,winName);
    theWindow.focus();
}

function newWin3()
{
    var winName='SizingChartWin';
    var fileName='download/pdf/answer2-children-sizing-chart.pdf';
    
    theWindow=window.open(fileName,winName);
    theWindow.focus();
}
