// **************************************************
//              Copyright by Pretti & So
//                 8020 Graz Austria
// **************************************************
//            Design by Gunter Jammernegg
//       gunter(DOT)jammernegg(AT)utanet(DOT)at
// **************************************************

//function NewWindow(url) // Link in neuem Fenster öffnen
//{
//  var fenster=window.open(url, "_blank");
//  fenster.focus();
//  return false;
//}

function ShowPix(image) // Bild im Container pix darstellen
{
  if (document.getElementById && (document.getElementById("canvas").offsetWidth == 646)) // ältere Browser und Screenreader ausschließen
  {
    document.getElementById("pix").innerHTML = "<a href=\"..\/index.php\" title=\"Home\"><img src=\"..\/pix\/" + image + "\" alt=\"Home\"><\/a>";
  }
}

function ShowPopup(title, image, imgwidth, imgheight) // Popup-Bilder einblenden
{
  if (document.getElementById && (document.getElementById("canvas").offsetWidth == 646)) // ältere Browser und Screenreader ausschließen
  {
    var marginleft = Math.round(-(imgwidth + 26) / 2);
    var margintop =  Math.round(-(imgheight + 49) / 2);
    document.getElementById("popup").style.margin = margintop+"px 0 0 "+marginleft+"px";
    var HTMLText =
        "<div id=\"popuphead\" style=\"width:" + (imgwidth + 12) + "px\">" + title + "<\/div>" +
        "<div id=\"popupimage\"><img src=\"" + image + "\" width=\"" + imgwidth + "\" height=\"" + imgheight + "\" alt=\"\"><\/div>" +
        "<div id=\"popupclose\"><a href=\"javascript:HidePopup()\" title=\"Schlie&szlig;en\"><img src=\"..\/pix\/_pixel.gif\" alt=\"Schlie&szlig;en\" width=\"" + (imgwidth + 14) +"\" height=\"" + (imgheight + 37) + "\"><\/a><\/div>";
    document.getElementById("popup").innerHTML = HTMLText;
  }
  else // neue Seite für ältere Browser und Screenreader
  {
    document.close();
    document.open();
    document.write("<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\"><html><head><title>Pretti &amp; So  ... just Swingin' Latin Ballads<\/title>" +
                   "<link rel=\"stylesheet\" type=\"text\/css\" href=\"..\/prettiundso_all.css\"><\/head>" +
                   "<body><div id=\"canvas\"><h2>" + title + "<\/h2><p><img src=\"" + image + "\" width=\"" + imgwidth + "\" height=\"" + imgheight + "\" alt=\"" + title + "\"><\/p>" +
                   "<p><strong><a href=\"javascript:history.back();\" title=\"zur&uuml;ck\">&#8250; zur&uuml;ck<\/a><\/strong><\/p><\/div><\/body><\/html>");
    document.close();
  }
  return false;
}

function HidePopup() // Popup-Bilder ausblenden
{
  document.getElementById("popup").innerHTML = "";
}

function mail(Name,Adress,Domain) // Umsetzen von Mailadressen zur Vermeidung von Adressenklau
{
  document.write('<a href=\"mailto:'+Name+'@'+Adress+'.'+Domain+'\" title=\"E-Mail\">&raquo;'+Name+'@'+Adress+'.'+Domain+'<\/a>');
}
