
function revealFormField(fieldname,value)
 { 

fieldname = document.getElementById(fieldname); 


for(var i = 1; i <  fieldname.length; i++)
 { 

var option_name = fieldname.options[i].value; 

if(document.getElementById(option_name))
{
document.getElementById(option_name).style.display = '';

}

} 

if(document.getElementById(value))
{
document.getElementById(value).style.display = 'inline'; 
}

}

function whitepaper_method()
{
location=document.jumpy.whitepaper.options[document.jumpy.whitepaper.selectedIndex].value
}

function brouchers_method()
{
location=document.jumpy.brouchers.options[document.jumpy.brouchers.selectedIndex].value
}


function software_method()
{
location=document.jumpy.software.options[document.jumpy.software.selectedIndex].value
}


function softwareDownload_method()
{
location=document.jumpy.softwareDownload.options[document.jumpy.softwareDownload.selectedIndex].value
}