function myjs_class_set() {
	var $obj = arguments[0];
	if ($obj) $obj.className = arguments[1];
}

function myjs_visibility_show() {
	var $i;
	for ($i = 0; $i < arguments.length; $i++) {
		var $obj = arguments[$i];
		if (typeof($obj) == 'string') $obj = document.getElementById($obj);
		if ($obj) if ($obj.style) $obj.style.visibility = ''; 
	}
}
function myjs_visibility_hide() {
	var $i;
	for ($i = 0; $i < arguments.length; $i++) {
		var $obj = arguments[$i];
		if (typeof($obj) == 'string') $obj = document.getElementById($obj);
		if ($obj) if ($obj.style) $obj.style.visibility = 'hidden'; 
	}
}