function select(path, graphic, type)
{
	document.images[graphic].src = path + graphic + "_on." + type;
	return true;
}
 
function deselect(path, graphic, type)
{
	document.images[graphic].src = path + graphic + "_off." + type;
	return false;
}
