// JavaScript Document

// imgpopup
  function imgpopup( url, w, h )
  {
    var x = w + 20;
    var y = h + 30;
    var win = window.open("","","width="+x+",height="+y+"resizeable=no,scrollbars=no");
    win.document.open("text/html");
    win.document.write("<html><head><title>"+url+"</title></head><body style=\"font-size:11px;font-family:Arial,background:#fff;text-align:center;margin:0px;padding:0px;\">");
    win.document.write("<div><a href=\"javascript:this.close()\"><img style=\"border:1px solid #ccc;padding:2px;\" src=\""+url+"\" width=\""+w+"\" height=\""+h+"\" alt=\""+url+"\" /></a></div>");        
    win.document.write("<a style=\"margin:3px;color:#AF271F;text-decoration:none;\" href=\"javascript:this.close()\">Fenster schlie&szlig;en");
	win.document.write("<a style=\"margin:3px;color:#AF271F;text-decoration:none;\" href=\"javascript:self.print()\">Fenster drucken");
    win.document.write("</body</html>");
    win.document.close();
    return true
  } 

//Seite empfehlen
function sendpage()
{
mail_str = "mailto:?subject= Kriemelmann Immobilien GmbH: " + document.title;
mail_str += "&body=Anbei ein Link zu einem interessanten Objekt  : " + document.title;
mail_str += ". Hier ist die Adresse: " + location.href; 
location.href = mail_str;
}