//Check Page Script

var browserVer=parseInt(navigator.appVersion);
var pageNum;
function checkPage() {
if (pageNum == "1")
	{
	document.getElementById('shoes').style.backgroundImage='url(images/all_jazzshoes.gif)';
	}
else if (pageNum == "2")
	{
	document.getElementById('shoes').style.backgroundImage='url(images/all_pointeshoes.gif)';
	}
else if (pageNum == "3")
	{
	document.getElementById('shoes').style.backgroundImage='url(images/all_tapshoes.gif)';
	}
}

//New Window Script

function NewWindow(mypage, myname, w, h, scroll, resize) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=resize,location=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}