function openWindow(page) {
	smallWindow = window.open(page,"","width=620,height=300,scrollbars=yes")
	return false;
}


function dayQuestion() {
	var question = new Array()
	question[0] = "<i>are you a dog or a cat person (or both)?</i>";
	question[1] = "<i>what song always reminds you of high school?</i>";
	question[2] = "<i>if you had to choose between raw or cooked, which would you prefer?</i>";
	question[3] = "<i>what is your favorite fish?</i>";
	question[4] = "<i>if you had a million dollars, where would you travel?</i>";
	question[5] = "<i>what new year's resolution have you kept?</i>";
	question[6] = "<i>what is the holiday that you hate the most?</i>";
	var choice = Math.round(Math.random() * 2);

	document.write(question[choice] + "<br>");
	document.write("<!--");
}


function writeEndComment() {
	document.write("-->");
}


function loadPage(page,frame) {
	if (parent.frames[frame]) {
		parent.frames[frame].document.location = page;
	}	
}

function writeStartComment() {
	if (parent.frames[1]) {
		document.write("<!--");
	}
}

function writeAnotherEndComment() {
	if (parent.frames[1]) {
		document.write("-->");
	}
}

