function tip() {
		tipnum = Math.round(Math.random()*17+0.5);
		tipName = "http://www.soulmateoracle.com/advice/tip" + tipnum + ".html";
		nowTime = new Date();
		numMS = nowTime.getTime();
		winName = "T" + numMS;
		window.open(tipName,winName,"width=625,height=410,scrollbars=yes,resizable=yes,status=yes");

}
function nextAnswer() {
	num =  Math.round(Math.random()*196.5);
	if (num < 1) { num = 1; }
	document.location.href="answer" + num + ".html";	
}
