

function openDocumentWindow(url) {
        var newWinObj = window.open('','oWin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=368,height=184')
newWinObj = window.open(url,'oWin')
	if (navigator.appVersion.charAt(0)>=3){
		newWinObj.focus()
	}
}

var tot = 0;
var page_url = "index.html";

function timeWarp()
{
	var v1 = document.tfk_form.pic1.options[document.tfk_form.pic1.selectedIndex].value;
	var v2 = document.tfk_form.pic2.options[document.tfk_form.pic2.selectedIndex].value;
	var v3 = document.tfk_form.pic3.options[document.tfk_form.pic3.selectedIndex].value;
	var v4 = document.tfk_form.pic4.options[document.tfk_form.pic4.selectedIndex].value;
	var v5 = document.tfk_form.pic5.options[document.tfk_form.pic5.selectedIndex].value;
	var v6 = document.tfk_form.pic6.options[document.tfk_form.pic6.selectedIndex].value;

	if ( v1 == 3 ) tot = tot + 4;
	if ( v2 == 3 ) tot = tot + 4;
	if ( v3 == 3 ) tot = tot + 4;
	if ( v4 == 3 ) tot = tot + 4;
	if ( v5 == 3 ) tot = tot + 4;
	if ( v6 == 3 ) tot = tot + 4;
// do not edit above	

// here's where you change the answers
// v1 == 1 or 2  v2 == 1 or 2  etc

	if ( v1 == 1 ) tot = tot + 1;
	if ( v2 == 2 ) tot = tot + 1;
	if ( v3 == 1 ) tot = tot + 1;
	if ( v4 == 2 ) tot = tot + 1;
	if ( v5 == 2 ) tot = tot + 1;
	if ( v6 == 1 ) tot = tot + 1;
	
// do not edit below
	if ( tot == 0 ) openDocumentWindow ('whonose-wrong-zero.html');
	if ( tot == 1 ) openDocumentWindow ('whonose-wrong-one.html');
	if ( tot == 2 )	openDocumentWindow ('whonose-wrong-two.html');
	if ( tot == 3 )	openDocumentWindow ('whonose-wrong-three.html');
	if ( tot == 4 )	openDocumentWindow ('whonose-wrong-four.html');
	if ( tot == 5 )	openDocumentWindow ('whonose-wrong-five.html');
	if ( tot == 6 )	window.location.href="whonose-win.html";
	if ( tot >= 7 )	openDocumentWindow ('whonose-wrong-select.html');

	tot = 0;
}
