/*

Copyright by VEXICOM Consulting
Internet: http://www.vexicom.de


removal prohibited
*/

function changestepdescription(num) {
var steptarget;
  switch (num) {
  	case 1: steptarget="step1.html"; break;
  	case 2: steptarget="step2.html"; break;
  	case 3: steptarget="step3.html"; break;
  	case 4: steptarget="step4.html"; break;
  	case 5: steptarget="step5.html"; break;
  }
parent.stepdescription.location.href=steptarget;
}
