var catalogPages = 
    new Array
	    (
	      "kroto.html",
		  "kclassic.html",
		  "knova.html",
		  "kperfect.html",
		  "kvaria.html",
		  "kpiccolo.html",
		  "kmobile.html",
		  "kverticale.html",
		  "klinea.html",
		  "kprimus.html",
		  "kparies.html",
		  "kplana.html",
		  "koval60.html",
		  "koval90.html",
		  "koval120.html",
          "ktubus.html",
		  "kregalleuchte.html",
		  "kvitrinenleuchte.html",
		  "kschrankleuchte.html",
		  "kspiegelleuchte.html",                  
		  "kklavierleuchte.html",
		  "korchesterpultleuchte.html",
		  "knotenstaenderleuchte.html",
		  "knotenhalterleuchte1.html",
		  "knotenhalterleuchte2.html",
		  "kbuchhalterleuchte.html",
          "kmodultechnik.html",
		  "kpicta.html"
		);

var pricePages = 
    new Array
	    (
	      "proto.html",
		  "pclassic.html",
		  "pnova.html",
		  "pperfect.html",
		  "pvaria.html",
		  "ppiccolo.html",
		  "pmobile.html",
		  "pverticale.html",
		  "plinea.html",
		  "pprimus.html",
		  "pparies.html",
		  "pplana.html",
		  "poval60.html",
		  "poval90.html",
		  "poval120.html",
          "ptubus.html",
		  "pregalleuchte.html",
		  "pvitrinenleuchte.html",
		  "pschrankleuchte.html",
		  "pspiegelleuchte.html",                  
		  "pklavierleuchte.html",
		  "porchesterpultleuchte.html",
		  "pnotenstaenderleuchte.html",
		  "pnotenhalterleuchte1.html",
		  "pnotenhalterleuchte2.html",
		  "pbuchhalterleuchte.html",
          "pmodultechnik.html",
		  "ppicta.html"
		);				   

function showPriceList(actFrame, targetFrame) {
  for (i = 0; i < catalogPages.length; i++) {
	if (catalogPages[i] == 
	      parent.frames[actFrame].location.href.substring(
		  parent.frames[actFrame].location.href.lastIndexOf('/')+1,
		  parent.frames[actFrame].location.href.length)) {
	  
	  parent.frames[targetFrame].location.href = pricePages[i];
	  break;
	}
	if (i == (catalogPages.length -1)) {
	  parent.frames[targetFrame].location.href = "preise.html";
	}
  }
}


