
//change no to yes on the next line if you want the pop up window to display
var doQuiz = "no";

//change the line genPopUp.location.href only
function quizPopUp() {
if (doQuiz == "yes"){
		genPopUp = window.open("","quiz","left=0,top=0,toolbar=no,location=no,scrollbars=yes,directories=no,status=no,menubar=no,resizable=yes,width=740,height=500");
		genPopUp.location.href="http://www.teenpeople.com/teenpeople/web/gdml4/2003/pregnancy/";
		if (genPopUp.opener == null) genPopUp.opener = window;
		genPopUp.opener.name = "opener";
	}
}
