// GENERIC POPUP CODE 


function WalesPopup(theURL,winName,features) {
  window.open(theURL,winName,features);
}


function popquiz(x, y) {window.open(x,y,'status=no,scrollbars=no,resizable=yes,width=314,height=150');}


function fullScreenPop(url) {
	var w = 600, h = 400; // default sizes
	if (window.screen) {
		w = window.screen.availWidth - 12;
		h = window.screen.availHeight - 48;
	}
	pop_window = window.open(url,'fullwin','width=' + w + ',height=' + h + ',left=0,screenX=0,top=0,screenY=0,fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes');
	self.name = "main";
/*
	if (window.focus) {
		setTimeout('pop_window.focus();',1000);
	}
*/
}




