/* 
	Dieses Skript laedt die Deutschlandkarte und setzt die richtigen Regionsbidler (gehighlitet).
	Dafuer muss die regionalbuero_id uebergeben werden. Diese wird aus dem Webcom Bereichskennzeichen
	generiert. Die Karte selbst ist via mouseover animiert.
	@author rtobies 08.09.08 rtobies@universum-online.de
*/

userAgent = window.navigator.userAgent;
browserVers = parseInt(userAgent.charAt(userAgent.indexOf("/")+1),10);
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function findElement(n,ly) {
	if (browserVers < 4)		return document[n];
	var curDoc = ly ? ly.document : document;
	var elem = curDoc[n];
	if (!elem) {
		for (var i=0;i<curDoc.layers.length;i++) {
			elem = findElement(n,curDoc.layers[i]);
			if (elem) return elem;
		}
	}
	return elem;
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		var img;
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			img = null;
			if (document.layers) {
				img = findElement(changeImages.arguments[i],0);
			}
			else {
				img = document.images[changeImages.arguments[i]];
			}
			if (img) {
				img.src = changeImages.arguments[i+1];
			}
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		Deutschlandkarte_CS_01_luebeck_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-lueb.jpg");
		Deutschlandkarte_CS_01_hamburg_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-hamb.jpg");
		Deutschlandkarte_CS_01_hannover_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-hann.jpg");
		Deutschlandkarte_CS_01_theodorheussakademie_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-theo.jpg");
		Deutschlandkarte_CS_01_wilhelmkstiftung_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-wilh.jpg");
		Deutschlandkarte_CS_01_wiesbaden_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-wies.jpg");
		Deutschlandkarte_CS_01_villalessing_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-vill.jpg");
		Deutschlandkarte_CS_01_thomasdehlerstiftung_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-thom.jpg");
		Deutschlandkarte_CS_01_stuttgart_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-stut.jpg");
		Deutschlandkarte_CS_01_berlinbrandenburg_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-berl.jpg");
		Deutschlandkarte_CS_01_halle_over = newImage("/images/regionalbueros/karte/Deutschlandkarte_CS_01-hall.jpg");
		preloadFlag = true;
	}
}

function setRegionalbueroImage(regionalbuero_id)
{
	quot = '"';

    // Linkziel bei Mouseklick
    //lnk_berl = "/webcom/show_uebersicht_veranstaltungen.php/_c-131/_lkm-73/i.html";
    //lnk_hall = "/webcom/show_uebersicht_veranstaltungen.php/_c-130/_lkm-75/i.html";
    //lnk_hamb = "/webcom/show_uebersicht_veranstaltungen.php/_c-129/_lkm-280/i.html";
    //lnk_hann = "/webcom/show_uebersicht_veranstaltungen.php/_c-128/_lkm-74/i.html";
    //lnk_lueb = "/webcom/show_uebersicht_veranstaltungen.php/_c-125/_lkm-72/i.html";
    //lnk_stut = "/webcom/show_uebersicht_veranstaltungen.php/_c-126/_lkm-77/i.html";
    //lnk_wies = "/webcom/show_uebersicht_veranstaltungen.php/_c-127/_lkm-76/i.html";
    //lnk_thom = "/webcom/show_uebersicht_veranstaltungen.php/_c-628/_lkm-282/i.html";
    //lnk_theo = "/webcom/show_uebersicht_veranstaltungen.php/_c-898/_lkm-281/i.html";    
    //lnk_vill = "http://www.villa-lessing.de"; // Villa Lessing
    //lnk_wkzs = "http://www.wilhelm-kuelz-stiftung.de"; // Wilhelm-Külz-Stiftung

    lnk_berl = "/Buero-Berlin/131c73/index.html";
    lnk_hall = "/Buero-Halle/130c75/index.html";
    lnk_hamb = "/Buero-Hamburg/129c280/index.html";
    lnk_hann = "/Buero-Hannover/128c74/index.html";
    lnk_lueb = "/Buero-Luebeck/125c72/index.html";
    lnk_stut = "/Buero-Stuttgart/126c77/index.html";
    lnk_wies = "/Buero-Wiesbaden/127c76/index.html";
    lnk_thom = "/Buero-Muenchen/628c282/index.html";
    lnk_theo = "/Buero-Gummersbach/898c281/index.html";    
    lnk_vill = "http://www.villa-lessing.de"; // Villa Lessing
    lnk_wkzs = "http://www.wilhelm-kuelz-stiftung.de"; // Wilhelm-Külz-Stiftung
    
    switch (regionalbuero_id)
    	{

    		case "476"	: img = "Deutschlandkarte_CS_01-berl.jpg";
    							        break;
    									
    		case "643"	: img = "Deutschlandkarte_CS_01-hall.jpg";
    									break;
    									
    		case "1273"	: img = "Deutschlandkarte_CS_01-hamb.jpg";
    									break;

    		case "474"	: img = "Deutschlandkarte_CS_01-hann.jpg";
    									break;
    									
    		case "473"	: img = "Deutschlandkarte_CS_01-lueb.jpg";
    									break;

    		case "472"	: img = "Deutschlandkarte_CS_01-stut.jpg";
    									break;
    									
    		case "471"	: img = "Deutschlandkarte_CS_01-wies.jpg";
    									break;

    		case "985"	: img = "Deutschlandkarte_CS_01-thom.jpg";
    									break;

    		case "470"	: img = "Deutschlandkarte_CS_01-theo.jpg";
    									break;

    		default			: img = "Deutschlandkarte_CS_01.jpg";
   	}

    html = ""
            +" <img  name="+quot+"Deutschlandkarte_CS_01"+quot+" src="+quot+"/images/regionalbueros/karte/"+img+""+quot+" width="+quot+"314"+quot+" height="+quot+"270"+quot+" border="+quot+"0"+quot+" alt="+quot+""+quot+" usemap="+quot+"#Deutschlandkarte_CS_01_Map"+quot+">"
            +" <map name="+quot+"Deutschlandkarte_CS_01_Map"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"78,200, 62,242, 63,251, 96,251, 103,243, 131,247, 145,251, 141,246, 150,235, 149,212, 164,188, 150,166, 136,156, 129,166, 119,166, 106,160, 103,172, 91,186"+quot+" href="+quot+""+lnk_stut+""+quot+"  "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-stut.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-stut.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-stut.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"132,160, 128,167, 123,161, 123,141, 132,141, 151,129, 169,140, 184,134, 188,129, 191,129, 203,134, 225,150, 221,157, 270,189, 271,204, 256,201, 244,224, 256,245, 256,252, 242,245, 225,243, 188,260, 169,252, 160,266, 142,252, 142,247, 151,244, 154,224, 148,212, 158,201, 165,189, 154,173, "
            +" 154,167, 137,157"+quot+" href="+quot+""+lnk_thom+""+quot+"  "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-thom.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-thom.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-thom.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"43,166, 61,160, 71,172, 68,175, 68,179, 61,179, 56,175, 49,179"+quot+" href="+quot+""+lnk_vill+""+quot+" target="+quot+"_blank"+quot+"   "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-vill.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-vill.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-vill.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"51,133, 42,139, 42,146, 51,149, 42,162, 64,160, 70,166, 73,172, 70,175, 92,186, 104,172, 104,160, 122,162, 122,139, 138,136, 153,106, 137,96, 100,121, 97,115, 63,133"+quot+" href="+quot+""+lnk_wies+""+quot+"    "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-wies.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-wies.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-wies.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"206,96, 223,89, 232,99, 254,100, 254,93, 269,93, 280,100, 280,116, 268,110, 261,115, 213,139, 203,131, 219,111, 206,105"+quot+" href="+quot+""+lnk_wkzs+""+quot+" target="+quot+"_blank"+quot+"   "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-wilh.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-wilh.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-wilh.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"96,72, 78,76, 69,80, 50,85, 57,96, 44,110, 50,128, 62,133, 96,116, 96,122, 106,116, 118,110, 119,105, 116,103, 125,96, 130,98, 136,96, 129,76, 122,76, 112,80, 103,80"+quot+" href="+quot+""+lnk_theo+""+quot+"    "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-theo.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-theo.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-theo.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"80,35, 111,32, 123,32, 140,35, 146,44, 152,45, 163,45, 182,52, 175,54, 167,58, 172,73, 163,79, 163,90, 149,97, 144,99, 140,95, 136,88, 129,72, 130,67, 123,69, 118,66, 111,68, 112,75, 102,79, 101,71, 95,68, 87,73, 80,71, 80,66, 75,66, 77,61, 87,61, 90,45"+quot+" href="+quot+""+lnk_hann+""+quot+" "
            +"    "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hann.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hann.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hann.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"185,59, 170,59, 178,76, 168,80, 170,91, 151,99, 155,105, 151,127, 161,127, 170,139, 170,133, 185,133, 189,127, 192,128, 204,133, 204,127, 211,122, 216,116, 222,111, 216,110, 206,105, 209,93, 228,89, 228,85, 216,80, 207,80, 206,68, 203,62, 204,59, 185,54"+quot+" href="+quot+""+lnk_hall+""+quot+" "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hall.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hall.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hall.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"188,51, 197,45, 208,45, 221,48, 234,39, 249,45, 249,58, 263,66, 270,92, 256,92, 240,98, 230,90, 230,84, 208,79, 206,67, 203,64, 205,58, 184,53"+quot+" href="+quot+""+lnk_berl+""+quot+"    "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-berl.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-berl.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-berl.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"143,39, 157,33, 159,45, 147,46"+quot+" href="+quot+""+lnk_hamb+""+quot+"    "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hamb.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hamb.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-hamb.jpg'); return true;"+quot+"> "
            +" <area shape="+quot+"poly"+quot+" alt="+quot+""+quot+" coords="+quot+"118,7, 154,14, 159,15, 172,27, 175,15, 179,27, 206,15, 224,14, 238,28, 247,46, 231,40, 223,47, 189,47, 182,50, 163,42, 156,33, 146,40, 124,28"+quot+" href="+quot+""+lnk_lueb+""+quot+"    "
            +" 	onmouseover="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-lueb.jpg'); return true;"+quot+" "
            +" 	onmouseout="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/"+img+"'); return true;"+quot+" "
            +" 	onmousedown="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-lueb.jpg'); return true;"+quot+" "
            +" 	onmouseup="+quot+"changeImages('Deutschlandkarte_CS_01', '/images/regionalbueros/karte/Deutschlandkarte_CS_01-lueb.jpg'); return true;"+quot+"> "
            +" </map> ";

	document.getElementById('deutschlandkarte').innerHTML=html;
}

preloadImages();
