var tipNo = 0;
var opsNo = 0;

function selectTip()
{
	tipNo = Math.floor(Math.random() * nTip);
};

function showTitle()
{
	document.write(titler[tipNo]);
};

function showTip()
{
	document.write(tips[tipNo]);
};

function selectOps()
{
	opsNo = Math.floor(Math.random() * nOps);
};

function showOpsImage()
{
	document.write("<A HREF=\"opskrifter\\"+opsFiler[opsNo]+"\">");
	document.write("<IMG CLASS=\"Recipe\" SRC=\"ops-img\\"+opsBilleder[opsNo]+"\" ");
	document.write("ALT=\""+opsTitler[opsNo]+"\" ");
	document.write("WIDTH=\"138\" HEIGHT=\"108\" BORDER=\"0\">");
	document.write("</A>");
};

function showOpsTitle()
{
	document.write("<A HREF=\"opskrifter\\"+opsFiler[opsNo]+"\">");
	document.write(opsTitler[opsNo]);
	document.write("</A>");
};

function showEmailAdress(strAdress)
{
	document.write("<a href=\"mailto:"+strAdress+"@anesmad.dk\">");
	document.write(strAdress+"@anesmad.dk");
	document.write("</a>");
}