function RS_AlleKurse()
{
document.writeln("Kurse vom 09.03.2010: CHF: 1,46260, JPY: 121,72000, USD: 1,35570");
}
function RS_AlleKurseAlsText()
{
return("Kurse vom 09.03.2010: CHF: 1,46260, JPY: 121,72000, USD: 1,35570");
}
function RS_Kursdatum()
{
document.writeln("09.03.2010");
}
function RS_Kurs(waehrung)
{
if( waehrung == "chf" ) { document.writeln("1,46260"); }
if( waehrung == "jpy" ) { document.writeln("121,72000"); }
if( waehrung == "usd" ) { document.writeln("1,35570"); }
}