function doAsk(msg,nexturl) {
  if (confirm(msg)) {
    location.replace(nexturl);
  }
}
function popup(URL) {
  popupfenster=window.open(URL,'popup','status=no,scrollbars=no,toolbar=no,width=400,height=400');
    if (document.images)
      popupfenster.focus();
}

function popup2(URL, width, height) {
  popupfenster=window.open(URL,'popup','status=no,scrollbars=yes,toolbar=no,width='+width+',height='+height);
    if (document.images)
      popupfenster.focus();
}

function enHighlight(area) {
	area.style.backgroundColor="#181818";
	area.style.color="#181818";
}
function deHighlight(area) {
	area.style.backgroundColor="#181818";
	area.style.color="#181818";
}

function HideLinkFocus() 
{ 
  if(document.all) 
  { 
    for(var i = 0; i < document.links.length; i++) 
     document.links[i].hideFocus = true; 
  } 
}