function WriteHeader(sMainBannerImage,sPage){
	document.write("<TABLE id=content_table cellSpacing=0 cellPadding=0 width=742 border=0>");
	document.write("<TBODY>");
	document.write("<TR>");
	document.write("<TD width=742 height='30' vAlign=top><!--START LOGOBALK-->");
	document.write("<TABLE cellSpacing=0 cellPadding=0 border=0>");
	document.write("<TBODY>");
	document.write("<TR>");
	document.write("<TD><img name='header' src='/images/"+sPage+"/header.gif' width='742' height='40' border='0' usemap='#m_header' alt=''>");
	document.write("<map name='m_header'>");
//document.write("<area shape='rect' coords='546,0,591,40' href='/uk/' alt=''  >");
    document.write("<area shape='rect' coords='591,0,629,40' href='/en/' alt='' >");
	document.write("<area shape='rect' coords='629,0,667,40' href='/de/' alt='' >");
	document.write("<area shape='rect' coords='666,-1,702,40' href='/es/' alt='' >");
	document.write("<area shape='rect' coords='701,0,742,40' href='/' alt='' >");
	document.write("</map></TD>");
	document.write("</TR><TR>");
	document.write("<TD><img src='"+sMainBannerImage+"' width='742' height='207'></TD>");
	document.write("</TR></TBODY></TABLE><!--END LOGOBALK-->");  
	disableRightClick()

}
              
 function disableRightClick(e)
{
  var message = "Right click disabled";
  
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    alert(message);
    return false;
  }
}         






