function ibox(ID,onID) {
	ID = 'ibox-'+ID+'-';
	if (document.getElementById) { // browsers with DOM support
		var buf = ID + '1';
		var n=1;
		while (document.getElementById(buf)) {
			document.getElementById(buf).className = '';
			document.getElementById(buf+'a').className = '';
			buf = ID + n++;
		}
		buf = ID + onID;
		document.getElementById(buf).className = 'on';
		document.getElementById(buf+'a').className = 'on';
	}
}


function popup(url,name,pars) {
	newwindow=window.open(url,name,pars);
	if (window.focus) {newwindow.focus()}
	return false;
}

function helpwindow(id)
{
	mywindow = window.open("help.php?id="+id,"mywindow","menubar=1,resizable=1,width=500,height=500");
	mywindow.moveTo(0,0);
}

