// JavaScript Document
function shoesPop (path, width, height, title){
	if (jQuery.browser.msie) {//hacked together for IE browsers
		winY = window.screenTo + 100;
		winX = window.screenLeft + 20;
	}else{
		winY = window.screenY + 100;
		winX = window.screenX + 20;
	}
	var params = 'left=' + winX + ',top=' + winY + ',height=' + height +',width =' + width;
	if (jQuery.browser.msie) {
		window.open(path, '', params);
	} else {
		window.open (path, title, params);
	}
}
