<!--
over = new Array;
p = new Array;
lp = new Array;
lk = new Array;

p[0]="Albania";
lp[0]="Albania";
p[1]="Austria";
lp[1]="Austria";
p[2]="Belgium";
lp[2]="Belgium";
p[3]="Bosnia";
lp[3]="Bosnia";
p[4]="Bulgaria";
lp[4]="Bulgaria";
p[5]="Croatia";
lp[5]="Croatia";
p[6]="Cyprus";
lp[6]="";
p[7]="Czech Republic";
lp[7]="Czech";
p[8]="Denmark";
lp[8]="Denmark";
p[9]="Finland";
lp[9]="Finland";
p[10]="France";
lp[10]="France";
p[11]="Germany";
lp[11]="Germany";
p[12]="Greece";
lp[12]="Greece";
p[13]="Hungary";
lp[13]="Hungary";
p[14]="Iceland";
lp[14]="Iceland";
p[15]="Ireland";
lp[15]="Ireland";
p[16]="Italy";
lp[16]="Italy";
p[17]="Liechtenstein";
lp[17]="";
p[18]="Luxembourg";
lp[18]="Luxembourg";
p[19]="Netherlands";
lp[19]="Netherlands";
p[20]="Norway";
lp[20]="Norway";
p[21]="Poland";
lp[21]="Poland";
p[22]="Portugal";
lp[22]="Portugal";
p[23]="Romania";
lp[23]="Romania";
p[24]="Slovak Republic";
lp[24]="Slovakia";
p[25]="Slovenia";
lp[25]="Slovenia";
p[26]="Spain";
lp[26]="Spain";
p[27]="Sweden";
lp[27]="Sweden";
p[28]="Switzerland";
lp[28]="Switzerland";
p[29]="Turkey";
lp[29]="Turkey";
p[30]="United Kingdom";
lp[30]="UK";
p[31]="Yugoslavia";
lp[31]="Yugoslavia";
lp[32]="Macedonia";

function hideAllCountries() {
  numChildren=lp.length;
  for (i = 0; i < numChildren; i++)
  {
    if (lp[i]!="") {
        document.getElementById(lp[i]).style.visibility="hidden";
    }
  }
}

function showCountry(n) {
  if (lp[n]=="") return;

    document.getElementById(lp[n]).style.visibility="visible";
}

function higlight(n) {
  if (!p[n]) return;
  htmlcode="";
  htmlcode+='<a href="';
  htmlcode+=lk[n];
  htmlcode+='" ';
  over[n]=1;
  //htmlcode+='style="font-family: Arial, Helvetica, sans-serif; font-size: 10px; text-decoration: none; color: #FF9900" ';
  htmlcode+='>';
  htmlcode+='<span class="lpHigh">';
  htmlcode+=p[n];
  htmlcode+='</span>';
  htmlcode+='</a>';

    document.getElementById("flier").style.visibility="hidden";
    contentD=contentL[1];
    deltaY=((contentD.ypos+13*n)-contentD.ytop);
    windowHeight=clipValues(contentD,"b")-clipValues(contentD,"t");
    //alert(windowHeight+" "+deltaY);
    if (deltaY<0) {
      moveTo(contentD, contentD.xpos, contentD.ypos-deltaY);
      clipTo(contentD,clipValues(contentD,"t")+deltaY,clipValues(contentD,"r"),clipValues(contentD,"b")+deltaY,clipValues(contentD,"l"))
    } else if ((deltaY+13)>windowHeight) {
      deltaY=deltaY+13-windowHeight;
      moveTo(contentD, contentD.xpos, contentD.ypos-deltaY);
      clipTo(contentD,clipValues(contentD,"t")+deltaY,clipValues(contentD,"r"),clipValues(contentD,"b")+deltaY,clipValues(contentD,"l"))
    }
    document.getElementById("flier").innerHTML=htmlcode;
    moveTo(document.getElementById("flier").style, contentD.xpos, contentD.ypos+13*n)
    document.getElementById("flier").style.visibility="visible";
}

function OverUP(n) {
  higlight(n);
  hideAllCountries();
  showCountry(n);
}

function initOverLayer() {
        numChildren=p.length;
        htmlcode="";

        htmlcode+='<table cellspacing="0" cellpadding="0" border="0">';
        for (i = 0; i < numChildren; i++)
        {
          htmlcode+='<tr height="13">';
          htmlcode+='<td height="13"  valign="top">';
          htmlcode+='<a href="';
          htmlcode+='#';
          htmlcode+='" ';
      //htmlcode+='style="font-family: Arial, Helvetica, sans-serif; font-size: 10px; text-decoration: none; color: #000066" ';
          htmlcode+='onMouseOver="OverUP('+i+')" ';
          htmlcode+='>';
      htmlcode+='<span class="lpLow">';
          htmlcode+=p[i];
          htmlcode+='</span>';
          htmlcode+='</a>';
          htmlcode+='</td>';
          htmlcode+='</tr>';
        }
        htmlcode+='</table >';

          document.getElementById("contentDiv").innerHTML='<textarea>'+htmlcode+'</textarea>';
}
//-->
