	var		t;	var		selectedRadio;function write_description(id) {	if(id == "1") {//		document.getElementById('description').innerHTML="Light spamfilter text and description";	}	if(id == "2") {//		document.getElementById('description').innerHTML="Mild spamfilter text and description";	}	if(id == "3") {//		document.getElementById('description').innerHTML="Strong spamfilter text and description";	}if(id == "4") {	}if(id == "5") {	}}function hoverRow(radioButtonName, rowName){	var radioButton = document.getElementById(radioButtonName);	var row = document.getElementById(rowName);    if (radioButton && row) {    	if (!radioButton.checked) {    		row.className = 'alternateproducthover';    	}    }	return true;}function clearRow(radioButtonName, rowName){  var result = null;	var radioButton = document.getElementById(radioButtonName);	var row = document.getElementById(rowName);    if (radioButton && row) {        if (radioButton.checked) {            row.className = 'alternateproductselect';        } else {            row.className = 'alternateproductdefault';        }        if (radioButton.checked) {            result = radioButton;        }    }	return result;}function selectRadio(tableName, radioButtonName,rowName){  var table = document.getElementById(tableName);	var radioButton = document.getElementById(radioButtonName);	var row = document.getElementById(rowName);    if (table && radioButton && row) {        var rows = table.getElementsByTagName('tr');    	radioButton.checked = true;    	for (var i = 0; i < rows.length; i++) {            rows[i].className = 'alternateproductdefault';    	}    	row.className = 'alternateproductselect';    }	return true;}
