function Div(id) {
	for(i=1; i<20; i++) {
		if(div=document.getElementById("div"+i)) {
			div.style.visibility='hidden';
		}
		if(img=document.getElementById("img"+i)) {
			img.src='/pics/null.gif';
		}
	}
	if(div=document.getElementById("div"+id)) {
		div.style.visibility='visible';
	}

	if(img=document.getElementById("img"+id)) {
		img.src='/pics/3dot.gif';
	}
}
	

function ColorRow(row,clr,now) {
	div = document.getElementById("tr"+row);
	div.style.backgroundColor = clr;
	if(lastrow) {
		div = document.getElementById("tr"+lastrow);
		div.style.backgroundColor=lastclr;
	}
	lastrow = row;
	lastclr = now;
}

function DeleteRow(page,id,row) {
	div = document.getElementById("tr"+row);
	div.style.backgroundColor='#FFCCCC';
	if(! confirm('Are you sure you would like to permenantly delete this record?')) {
		return false;
	} else {
		window.open(page+row+"&delete=1","_top");
	}
}


