function showpopupwindow(sUrl,w,h,cb,sb){
if (cb=='yes')
sProp='';
else {
if ((w==-1) || (h==-1)) {
sProp= 'width='+screen.width+',height='+screen.height+',top=0,left=0,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
} else {
l=(screen.width)?(screen.width-w)/2:100;
t=(screen.height)?(screen.height-h)/2:100;
sProp='width='+ w +',height='+ h +',top='+ t +',left='+ l +',scrollbars='+ sb +',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
}
}
oWin=window.open(sUrl,'',sProp);
oWin.focus();
}

function oc(a)
{
  var o = {};
  for(var i=0;i<a.length;i++)
  {
    o[a[i]]='';
  }
  return o;
}

function changeMenu(sel)
{
var f = sel.form;
var opt = sel.options[sel.selectedIndex].value;


if( opt in oc(['B','BG','DK','D','EE','FIN','F','GR','I','LV','LT','L','M','NL','PL','P','RI','S','SK','SLO','E','CZ','H','UK','CY']) )
{
document.getElementById("ustid").style.display = "inline";
}
else
{
document.getElementById("ustid").style.display = "none";
}

if( opt in oc(['A','B','BG','DK','D','EE','FIN','F','GR','I','LV','LT','L','M','NL','PL','P','RI','S','SK','SLO','E','CZ','H','UK','CY','N','FL','IS']) )
{
document.getElementById("bankspesen").style.display = "none";
}
else
{
document.getElementById("bankspesen").style.display = "inline";
}

return true;
}


function changeMenu2(sel)
{
var f = sel.form;
var opt = sel.options[sel.selectedIndex].value;


if( opt in oc(['BEL','BGR','DNK','DEU','EST','FIN','FRA','GRC','ITA','LVA','LTU','LUX','MLT','NLD','POL','PRT','ROU','SWE','SVL','SVN','ESP','CZE','HUN','GBR','CYP']) )
{
document.getElementById("ustid").style.display = "inline";
}
else
{
document.getElementById("ustid").style.display = "none";
}

if( opt in oc(['AUT','BEL','BGR','DNK','DEU','EST','FIN','FRA','GRC','ITA','LVA','LTU','LUX','MLT','NLD','POL','PRT','ROU','SWE','SVL','SVN','ESP','CZE','HUN','GBR','CYP','NOR','LIE','ISL']) )
{
document.getElementById("bankspesen").style.display = "none";
}
else
{
document.getElementById("bankspesen").style.display = "inline";
}

return true;
}