<!--
/*
This code is from Dynamic Web Coding 
at http://www.dyn-web.com/
Copyright 2001-2 by Sharon Paine 
See Terms of Use at http://www.dyn-web.com/bus/terms.html
Permission granted to use this code 
as long as this entire notice is included.
*/

// resize fix for ns4
var origWidth, origHeight;
if (document.layers) {
	origWidth = window.innerWidth; origHeight = window.innerHeight;
	window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); }
}

// layer content variables
var msg0_de = "<h2>Workshops</h2>Harponline stellt auf den folgenden Seiten das Wissen zur Verf&uuml;gung, welches Ihnen erlaubt, die wichtigsten Einstellarbeiten und Reparaturen an Mundharmonikas selbst vorzunehmen.";
var msg1_de = "<h2>FAQ</h2> Der Einstieg in die Welt der Mundharmonika";
var msg2_de = "<h2>Wissen Bluesharp</h2>Dieser Link stellt Informationen rund um die Bluesharp bzw. die Diatonische Mundharmonika nach dem Richtersystem zur Verf&uuml;gung";
var msg3_de = "<h2>Wissen Chromatische Mundharmonika</h2>Erg&auml;nzende Informationen speziell f&uuml;r die Chromatische Mundharmonika";
var msg4_de = "<h2>Diatonische Workshops</h2>Wartungs- und Reparaturanleitungen f&uuml;r die Bluesharp";
var msg5_de = "<h2>Chromatische Workshops</h2>Wartungs- und Reparaturanleitungen f&uuml;r die Chromatische Mundharmonika";

var msg0_en = "<h2>Workshops</h2>On the following pages Harponline provides all the knowledge for maintainance and selfrepair of your harmonicas.";
var msg1_en = "<h2>FAQ</h2>The questions that mean the entrance to Harponline harmonica world.";
var msg2_en = "<h2>Knowledge Bluesharp</h2>This link provides informations about the Diatonic Richter harmonica.";
var msg3_en = "<h2>Knowledge<br />Chromatic<br />Harmonica</h2>This link provides informations around the Chromatic harmonica."
var msg4_en = "<h2>Diatonic Workshops</h2> Maintenance and repair of bluesharps.";
var msg5_en = "<h2>Chromatic Workshops</h2> Maintenance and repair of Chromatic harmonicas.";





var infoLyr;
function initInfoLyr() {
	// call constructor to create write layer
	// arguments: id, width, height
	// ns4 needs height for resizeTo
	// be sure to set height large enough or ns4 will clip it off
	infoLyr = new writeObj('infoDiv',119,160);
}

function showInfo(txt) {
	if (!infoLyr) return;
	var cntnt = '<div class="infoDiv">' + txt + '</div>';
	var y = getScrollY();
	infoLyr.shiftTo(0,y);	
	infoLyr.writeLyr(cntnt);
	infoLyr.show();
}

function hideInfo() {
	if (!infoLyr) return;
	infoLyr.hide();
}

function loadIframe(iframeName, url) {
  if ( window.frames[iframeName] ) {
    window.frames[iframeName].location = url;   
    return false;
  }
  else return true;
}

window.onload=initInfoLyr;

//-->

// PopUp-Inhalte können als normaler Link ( z.B. bei Google gefunden) 
//oder aus dem
// Shopkontext heraus aufgerufen werden. Diese Funktion führt immer in 
//den Shop
// unabhängig vom aufrufendem Kontext.
function PopUpBack() {
  if ( !window.name ) {
    window.location.href = "http://www.harponline.de";
  } else {
    this.close();
    window.opener.focus();
  }
}
