function popUp(URL, goals, bookings) {
day = new Date();
id = day.getTime();
tmpheight = 32;
if (goals > 0)
{
	tmpheight = tmpheight + 21;
	tmpheight = tmpheight + (16 * goals);
} else { tmpheight = tmpheight + 5; }
if (bookings > 0)
{
	tmpheight = tmpheight + 21;
	tmpheight = tmpheight + (16 * bookings);
} else { tmpheight = tmpheight + 5; }
tmpheight = tmpheight + 60;

eval("page" + id + " = window.open('/popmatch.php?fixture='+URL, 'bettingdirectory', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=478,height="+ tmpheight +"');");
}

function archive(filedate, fixture, goals, bookings) {
day = new Date();
id = day.getTime();
tmpheight = 32;
if (goals > 0)
{
	tmpheight = tmpheight + 21;
	tmpheight = tmpheight + (16 * goals);
} else { tmpheight = tmpheight + 5; }
if (bookings > 0)
{
	tmpheight = tmpheight + 21;
	tmpheight = tmpheight + (16 * bookings);
} else { tmpheight = tmpheight + 5; }
tmpheight = tmpheight + 60;
eval("page" + id + " = window.open('/archive.php?filedate='+filedate+'&fixture='+fixture, 'bettingdirectory', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=478,height="+ tmpheight +"');");
}