function header(caller, leveys) { 
var hw1="";
var hw2="";
  if (kieli=="")
     kieli="f";
  if (kieli==null)
     kieli="f";

  if (kieli=="f") {
      hw1 = "Harry Wessmannin yhtye";
      hw2 = "yhtye";
  }
  if (kieli=="e") {
      hw1 = "Harry Wessman Band";
      hw2 = "Band";
     }
  if (kieli=="s") {
      hw1 = "Harry Wessman Band";
      hw2 = "Band";
     }

  var pic = "../kuvat/wessupalkki.jpg";
  if (caller=="index.html") {
        pic = "kuvat/wessupalkki.jpg"; 
         } 
//var leveysPlus = parseInt(propScreenWidth); // + parseInt("2");
var leveysPlus = leveys;         
    
var hea = "<TABLE WIDTH='"+leveysPlus+"' BORDER='0' CELLPADDING='0' CELLSPACING='0' class='header'>";
    hea = hea + "<TR><TD  background='" + pic + "'  height='120' valign='top' align='center' class='otsikko' title ='Harry Wessmannin yhtye'>";	 
//    hea = hea + hw1 + "&nbsp;<br> "+ hw2 + "&nbsp;";
    hea = hea + "<span  style='font-size: 8px;'>&nbsp;<br></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" + hw1 + "<br><br>";
    hea = hea + "</TD></TR></TABLE>";
    
 //   alert('Header='+hea);
  return hea;
}

