<script type="text/javascript">
//
// Add focus styling to the parent (DIV) element of the radio button receiving focus
//
function parentFocus( event ) {
// Get event object if using Internet Explorer
var e = event || window.event;
// Check the object for W3C DOM event object, if not use IE event object to update the class of the parent element
if( e.target )
e.target.parentNode.className = "select focus";
else
e.srcElement.parentNode.className = "select focus";
}
//
// Remove focus styling from the parent (DIV) element of the radio button receiving focus
//
function parentBlur( event ) {
// Get event object if using Internet Explorer
var e = event || window.event;
var node;
// Check the object for W3C DOM event object, if not use IE event object to update the class of the parent element
if( e.target )
e.target.parentNode.className = "select";
else
e.srcElement.parentNode.className = "select";