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;
}

function SR(o) {

	if(o) {
		if(o.className) {
			
			var s     = o.className;
			var sN    = o.className;
			var iOver = s.indexOf("Over");
			
			sN = (iOver > 0) ? s.substr(0, iOver) : s + "Over";
			
			if(sN != s)
				o.className = sN;
			
		}
	}
	
}
