// pop-up configurations (1 for yes, 0 for no)
var status 		= 0;
var toolbar 	= 0;
var locationbar	= 0;
var menubar		= 0;
var directories = 0;
var resizable	= 0;
var scroolbars	= 1;
// pop-up dimenstions (in pixels)
var width		= 650;
var height		= 500;
function open_quiz(qname) {
	window.open("http://public1.websrv.casino770.com/fcg-games/quiz/php/quiz.php?quiz=" + qname, 
						"quiz",  
						"location=" + locationbar + 
						",status=" + status + 
						",scrollbars=" + scroolbars + 
						",resizable=" + resizable + 
						",menubar=" + menubar + 
						",directories=" + directories + 
						",width=" + width +
						",height=" + height
				);
}
var ahref = '<a href="#" onclick="open_quiz(\'' + quiz_name + '\')" class="' + ahrefclass + '">' + ahreftext + '</a>';
document.writeln(ahref);