function popCenter (page, name, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+'';
	win = window.open(page, name, winprops);
	win.focus();
	//<a href="javascript:popCenter('quiz/default.asp','quiz','441','376','no');">
}

function printMe() {
	window.print();
}
