/* MaxMind Technologies */ function next_button_disabled(state){ if ($('next_button')){ $('next_button').disabled = state; if (state == true){ $('next_button').style.backgroundColor = '#C0C0C0'; $('next_button').style.color = '#828067'; } else { $('next_button').style.backgroundColor = '#600000'; $('next_button').style.color = '#FFFFFF'; } } } function overlay_show(object){ if ($(object)){ new Overlay().show($(object), { cls: 'maxres_modal', position : 'center', modal : true, animate : true, opacity : 0.9, auto_hide : false, click_hide : true, bckg_opacity : 0.7 }); } }