Código PHP:
<script type="text/javascript">
// http://www.somacon.com/p143.php
// return the value of the radio button that is checked
// return an empty string if none are checked, or
// there are no radio buttons
function getCheckedValue(radioObj) {
if(!radioObj)
return "";
var radioLength = radioObj.length;
if(radioLength == undefined)
if(radioObj.checked)
return radioObj.value;
else
return "";
for(var i = 0; i < radioLength; i++) {
if(radioObj[i].checked) {
return radioObj[i].value;
}
}
return "";
}
// set the radio button with the given value as being checked
// do nothing if there are no radio buttons
// if the given value does not exist, all the radio buttons
// are reset to unchecked
function setCheckedValue(radioObj, newValue) {
if(!radioObj)
return;
var radioLength = radioObj.length;
if(radioLength == undefined) {
radioObj.checked = (radioObj.value == newValue.toString());
return;
}
for(var i = 0; i < radioLength; i++)
{
radioObj[i].checked = false;
if(radioObj[i].value == newValue.toString())
{
radioObj[i].checked = true;
}
}
}
/*
Made by Martial Boissonneault � 2002-2003 http://getElementById.com/
May be used and changed freely as long as this msg is intact
Visit http://getElementById.com/ for more free scripts and tutorials.
*/
var ns4 = (document.layers);
var ie4 = (document.all && !document.getElementById);
var ie5 = (document.all && document.getElementById);
var ns6 = (!document.all && document.getElementById);
function FechaContrato(valor)
{
// Netscape 4
if(ns4)
{
document.layers[id].value = valor;
}
// Explorer 4
elseif(ie4)
{
document.all[id].value = valor;
}
// W3C - Explorer 5+ and Netscape 6+
elseif(ie5 || ns6)
{
document.getElementById(id).value = valor;
}
}
</script>