function openForm(url, nimi) {
	var handle = window.open(url, nimi, "width=750,height=450,resizable=no,toolbar=no,status=no,location=no,titlebar=no");
	if (!handle.opener) handle.opener = self;
	childHandle = handle;
	handle.focus();
	return false;
}
function openResizableForm(url, nimi) {
	var handle = window.open(url, nimi, "width=750,height=450,resizable=yes,toolbar=no,status=no,location=no,titlebar=no");
	if (!handle.opener) handle.opener = self;
	childHandle = handle;
	handle.focus();
	return false;
}
var g_oKohde = null;
function NaytaKohde(sUrl) {
	g_oKohde = window.open(sUrl, "Kohdetiedot", "width=870,height=600,resizable=yes,toolbar=no,status=no,location=no,titlebar=no,scrollbars=yes");
	g_oKohde.focus();
}
function IsOpen(o) {
	var b = true;
	if(!o)
		b = false;
	else if(o.closed)
		b = false;
	return b;
}
function FindElement(sId) {
	var o = null;
	if(document.getElementById)
		o = document.getElementById(sId);
	if(!o && document.all)
		o = document.all[sId];
	return o;
}