/* JavaScript file */

function switch_image (obj,onoff){
	if (!obj) return;
	eval("var image_onoff = " + obj.name );
	image_set_onoff(obj, image_onoff , onoff)	
}

function switch_ico (obj_name,onoff,divid) {
	var obj = document.images[obj_name]
	switch_image (obj,onoff)
}
