function FindElement(sId) {
	var o = null;
	if (document.getElementById)
		o = document.getElementById(sId);
	if (!o && document.all)
		o = document.all[sId];
	if (!o && document.layers)
		o = document.layers[sId];
	return o;
}
function OpenInside(sUrl) {
	var inside = window.open(sUrl, "Sisapiiri_Rekisteroityminen", "width=420,height=600,resizable=no,toolbar=no,status=no,location=no,titlebar=no");
	return false;
}
function OpenContest(sUrl) {
	var rtietaja = window.open(sUrl, "Rallitietaja", "width=830,height=550,resizable=yes,toolbar=no,status=no,location=no,titlebar=no,scrollbars=yes");
	return false;
}
