<!-- // Walter Beschmout - webmaster@phpquiz.com

if (window != top) {
top.location = location;
}

function OpenWindow(URL,Name,Features) {
link=open(URL,Name,Features);
link.focus();
}

function HomePage(what,urlpage) {
	what.style.behavior='url(#default#homepage)';
	what.setHomePage(urlpage);
}

function ConfirmChoice(which,where) {
	var accord;
	accord=confirm("Etes-vous sūr de vouloir "+which);
	if (accord==true) {
		top.location.href=where;
	}

}

//-->
