<!--

function QuestionForm() {
	var iMyWidth;
	var iMyHeight;
	var current = document.URL
	//gets top and left positions based on user's resolution so help window is centered.
	iMyWidth = (window.screen.width/2) - (175 + 10); 
	iMyHeight = (window.screen.height/2) - (201 + 40); 
	var win29 = window.open("http://www.blytheco.com/misc/question/question1.asp?page=" + current +"","Window29","status=no,height=400,width=350,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	win29.focus();
}
-->
