﻿// JScript File
function newWin(filename,type)
{
   if (type=='winImage') 
   {   
        var winWidth=550;
        var winHeight=420;
       
        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;	
    }
    else if (type=='winMultiView')
    {
		var winWidth=735; 
		var winHeight=430;
	    winSettings='menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,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();
}
