function generate_takeaction(){

var takeaction = new Array();

takeaction[0] = '<a href="../../contact/index.html"><img src="../../images/takeaction/person1.jpg" width="192" height="104" border="0" alt="Weitere Informationen anfordern"></a>';
takeaction[1] = '<a href="../../contact/index.html"><img src="../../images/takeaction/person2.jpg" width="192" height="104" border="0" alt="Weitere Informationen anfordern"></a>';
takeaction[2] = '<a href="../../contact/index.html"><img src="../../images/takeaction/person3.jpg" width="192" height="104" border="0" alt="Weitere Informationen anfordern"></a>';
takeaction[3] = '<a href="../../contact/index.html"><img src="../../images/takeaction/person4.jpg" width="192" height="104" border="0" alt="Weitere Informationen anfordern"></a>';


var anzahl = 4;
var zufall = 0;
zufall = Math.random();
zufall = Math.floor(zufall * anzahl);

random_takeaction = takeaction[zufall];
document.write(random_takeaction);

}