<!--
function popUpPage() {
	var iMyWidth;
	var iMyHeight;
	var current = document.URL
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (156 + 10); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (60); //half the screen height minus half the new window height (plus title and status bars).
	var win11 = window.open("http://www.blytheco.com/misc/recommend.asp?page=" + current +"","Window11","status=no,height=218,width=312,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	win11.focus();
}
-->

