function funnies()
{
	var randomNumber=Math.round(Math.random()*15)+1;
	var funnyfile="funnies"+randomNumber+".htm";
	window.location=funnyfile;
}

function goNewWin(docname){
	var newWinPutX=300;
	var newWinPutY=200;
//	var theNewWin=window.open(file to open,window name, window parameters - order not important)
	theNewWin=window.open(docname,"FunLinks","height=375,width=300,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no");
	
	theNewWin.moveTo(newWinPutX,newWinPutY);
}

