var OAS_timeseen_url = '';
var OAS_current_timeseen = -1;

function OAS_timeseen(seconds)
{
	OAS_current_timeseen = seconds;
}

function setOAS_timeseen_url(url)
{
	OAS_timeseen_url = url;
}

function OAS_timeseen_onunload() {
	if (OAS_current_timeseen >= 0 && OAS_current_timeseen < 999)
	{
		if (OAS_timeseen_url && OAS_timeseen_url != '')
		{
			document.write('<img src="' + OAS_timeseen_url.replace("\[sekunden.gif\]", OAS_current_timeseen + ".gif") + '" border="0" width="1" height="1">');

			OAS_finaltime = (new Date).getTime() + 500;
			while ((new Date).getTime() < OAS_finaltime)
			{
			}
		}
	}
}

function OAS_reminder(html)
{
	if ((html != null) && (html != 'null')) {
		document.getElementById('reminder').innerHTML = html;
	}
}