p_profil = new Array(9);

p_profil[0]     = new Image(220,140);
p_profil[0].src = "../img/anfrage_form/text.gif";

p_profil[1]     = new Image(220,140);
p_profil[1].src = "../img/anfrage_form/cprofil.gif";

p_profil[2]     = new Image(220,140);
p_profil[2].src = "../img/anfrage_form/halbschale.gif";

p_profil[3]     = new Image(220,140);
p_profil[3].src = "../img/anfrage_form/hutprofil.gif";

p_profil[4]     = new Image(220,140);
p_profil[4].src = "../img/anfrage_form/konus.gif";

p_profil[5]     = new Image(220,140);
p_profil[5].src = "../img/anfrage_form/rohr.gif";

p_profil[6]     = new Image(220,140);
p_profil[6].src = "../img/anfrage_form/uprofil.gif";

p_profil[7]     = new Image(220,140);
p_profil[7].src = "../img/anfrage_form/uebergangsstuecke.gif";

p_profil[8]     = new Image(220,140);
p_profil[8].src = "../img/anfrage_form/winkel.gif";

p_profil[9]     = new Image(220,140);
p_profil[9].src = "../img/anfrage_form/zprofil.gif";

function SelectProfil()
{

   for (i = 0; i < document.anfrage.profil.length; i++)
   {
     if (document.anfrage.profil.options[i].selected == true)
        document.images["profile_picture"].src = p_profil[i].src;
   }

}
