function showImg(publicHttpRoot, imgURL) {
	window.open(publicHttpRoot + '/misc/img.php?imgurl=' + imgURL, 'trilakimg', 'width=10, height=10, menubar=no, location=no, resizable=yes, scrollbars=yes, top=5, left=5');
}

function delItem(delText, delUrl) {
	if (confirm(delText)) {
		location.replace(delUrl);
	} else {
		return;
	}
}

function showNextButton(selid, itemid) {
   var sel = document.getElementById(selid);
	var but = document.getElementById(itemid);
	var selIndex = sel.selectedIndex;
	if (sel[selIndex].value == '') {
		but.style.visibility = 'hidden';
	} else {
		but.style.visibility = 'visible';
	}
}

function setSearchBoxSelectValue(hidVal, intVal) {
	$('intpinner').innerHTML = "<font class=\"smalltext\">" + intVal + "</font>";
	// alert($('intpinner').innerHTML);
	// alert($F('searchplace'));
	$('searchplace').value = hidVal;
}