//
// sleepguidePopup.js
//
//
//  opens an html page in a popup window

function superfeetPopup () {

	var w = 600;
	var h = 480;
	if (document.all) {
		window.open ("/superfeet/include/superfeetPopupInfo.htm", 'sfPopup', 'leftmargin=5,topmargin=5,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h + ',left=10,top=10')
	} else {
		window.open ("/superfeet/include/superfeetPopupInfo.htm", 'sfPopup', 'leftmargin=5,topmargin=5,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h + ',screenx=10,screeny=10')
	}
}


