function attachPop() {
	var content = document.getElementById('content');
	var as = content.getElementsByTagName('a');
	for(i=0; i<as.length; i++) {
		var temparray = as[i].getAttribute('href').split('/');
		if(temparray[temparray.length-1].match('quiz')) {
			as[i].onclick = function() {
				window.open(this,'Quiz','width=660,height=550,resizable=1,scrollbars=0');
				return false;
			}
		}	
	}
}
addLoadEvent(attachPop);