function qresults( page, q, Qmark )
{
	document.frmIndex.page.value = page;
	document.frmIndex.q.value = q;
	document.frmIndex.Qmark.value = Qmark;

	document.frmIndex.submit();
}

function loginguest()
{
	document.frmLogin.login.value = 'guest';
	alert( "Welcome! All Quizzes Are Free!" );

	document.frmLogin.submit();
}

function tomain()
{
	document.frmToMain.submit();
}

function logout()
{
	document.frmLogout.submit();
}