/*
// *** MENU SCRIPT *** //
var iSymbolClosed = "<img src=bilder/menu_closed.gif width=5 height=5>"
var iSymbolOpen = "<img src=bilder/menu_open.gif width=5 height=5>"
var subLeftMargin = "15"
var iSpace = "5"
var topPadding = "0"
var bottomPadding = "1"

var iType = "0" // 0 = text, 1 = images
var iClickOnHead = "1" // 0 = nothing happends 1 = load new page (like subitems)

// *** Restore Menu *** //
function restore() {
	var iArray = new Array(); 
	iArray[0] = "j1"
	iArray[1] = "j2"
	iArray[2] = "j3"
	iArray[3] = "j4"
	iArray[4] = "j5"
	for (var iNum=0;iNum<iArray.length;iNum++) {
		eval("document.getElementById('sub" + iArray[iNum] + "').style.display='none'");
		eval("document.getElementById('arrow" + iArray[iNum] + "').innerHTML=iSymbolClosed");
	}
}

// *** Headmenu with Subitems *** //
function loadPage1(i,iName) {
	restore();
	displaySubs(i,iName);
	if (iClickOnHead=="0") {
	}
	else {
		loadContent(iName);
	}
}

// *** Headmenu without Subitems *** //
function loadPage0(i,iName) {
	restore();
	loadContent(iName);
}

// *** Load new Page *** //
function loadContent(iName) {
	if (iName=="pppprojektet") {
		window.open("http://www.schizofreniforbundet.se/ppp/index.htm");
	}
	else if (iName=="webshop") {
		window.open("e-handel.htm");
	}
	else {
		if (iName=="nyheter") {
			mainFrame.location.href="nyheter/nyheter.php?newsmanager_id=27";
		}
		else {
			mainFrame.location.href="text_" + iName + ".htm";
		}
		document.images['mainHeadline'].src="bilder/head_" + iName + ".gif";
	}
	if (iName=="lokalaforeningar") {
		document.getElementById('zMap').style.display="block";
		document.getElementById('zImg').style.display="none";
	}
	else {
		document.getElementById('zMap').style.display="none";
		document.getElementById('zImg').style.display="block";
	}
}

// *** Show Submenu *** //
function displaySubs(i,iName) {
	eval("document.getElementById('sub" + i + "').style.display=''");
	eval("document.getElementById('arrow" + i + "').innerHTML=iSymbolOpen");
}

// *** Print Submenu - Start *** //
function renderSubTop(i) {
	document.write("<tr style=display:none; id=sub" + i + ">");
	document.write("<td></td>");
	document.write("<td>");
	document.write("<table border=0 cellspacing=0 cellpadding=0 style=\"margin:3px 0px;\">");
}

// *** Print Submenu - End *** //
function renderSubBot() {
	document.write("</table>");
	document.write("</td>");
	document.write("</tr>");

}

// *** Print Submenu *** //
function renderSubItem(iName,iReal) {
	document.write("<tr><td style=\"padding:" + topPadding + " 0 " + bottomPadding + " " + subLeftMargin + ";\"><a onfocus=this.blur(); href=\x22javascript:loadContent('" + iName + "');\x22>");
	if (iType=="0") {
		document.write(iReal);
	}
	else {
		document.write("<img src=bilder/nav_" + iName + ".gif>");
	}
	document.write("</a></td></tr>");
}

// *** Print Headmenu *** //
function renderHeadItem(i,iName,iReal,iNum) {
	if (iNum==1) {
		x = iSymbolClosed
	}
	else {
		x = ""
	}
	
	document.write("<tr>");
	document.write("<td id=arrow" + i + ">" + x + "</td>");
	document.write("<td style=\"padding:" + topPadding + " 0 " + bottomPadding + " " + iSpace + "px;\"><a onfocus=this.blur(); href=javascript:loadPage" + iNum + "('" + i + "','" + iName + "');>");
	
	if (iType=="0") {
		document.write(iReal);
	}
	else {
		document.write("<img src=bilder/nav_" + iName + ".gif>");
	}
	
	document.write("</a></td>")
	document.write("</tr>");
}
*/
// *** Show/Hide Country on Map *** //
function change(iName,n1,n2,n3) {
	for (var i=1;i<4;i++) {
		eval("document.images['mapno" + i + "'].src='/Templates/Public/Styles/gfx/map/swe" + i + ".gif'");
	}
	if (n1!="0") {
		document.images['mapno1'].src="/Templates/Public/Styles/gfx/map/" + iName + "1.gif";
	}
	if (n2!="0") {
		document.images['mapno2'].src="/Templates/Public/Styles/gfx/map/" + iName + "2.gif";
	}
	if (n3!="0") {
		document.images['mapno3'].src="/Templates/Public/Styles/gfx/map/" + iName + "3.gif";
	}
}