// Pop up Window 
function popupPage(page, pagetitle, varH, varW, scroll) {
	windowprops = "height=" + varH + ",width=" + varW + ",location=no,"
	+ "scrollbars=" + scroll +",menubars=no,toolbars=no,resizable=no";
	window.open(page, pagetitle, windowprops);
}

function popupPageWithConfirmation(page) {
	input_box=confirm("Thank you for visiting the Science of Sex and Gender Online Course Web site. This link will direct you to a new Web site in another window. If you do not wish to the leave the course Web site, simply click on 'Cancel', or click on 'OK' to if you wish to continue.");
	if (input_box==true)
	{ 
		window.open(page);
	}
}