
function into(oObj)
{
	fg=oObj.style.color;
	bg=oObj.style.background;
//	oObj.style.cursor="hand";
	oObj.style.color="#008000";
	oObj.style.background="white";
}

function outof(oObj)
{

//	oObj.style.cursor="default";
	oObj.style.color="white";
	oObj.style.background="#008000";
}


function doPopup(id)
{

	var newName="_blank";
	var newSettings=	"menubar=no," +
					"toolbar=no," +
					"location=no,"  +
					"directories=no,"+
					"dependent=no," +
					"status=no,"+
					"resizeable=no," +
					"scrollbars=no," +
					"width=500," +
					"height=550;"

	var url="entry.php?i=" + id;

	newWindow=window.open(url, newName, newSettings);

}
