var popup = 
{
  image: function ( url, width, height )
  {
    var winWidth = parseInt(width)+20;
    var winHeight = parseInt(height)+20;
    var win = window.open(url, "_blank", "width="+(winWidth)+",height="+(winHeight));
    
    win.document.write("<html><head>");
    win.document.write("<title>Image popup</title>");
    win.document.write("<style>body { margin: 10px; padding: 0px; }</style>");
    win.document.write("</head>");
    win.document.write("<body bgcolor='#000000'>");
    win.document.write("<img src='"+url+"' width='"+width+"' height='"+height+"' />");
    win.document.write("</body></html>");
    return true;
  },
  
  info: function ( title, divId, width, height )
  {
    var info = document.getElementById(divId);
    var infoHeight = parseInt(height)-70;
    
    var win = window.open("", "_blank", "width="+(width)+",height="+(height));
    win.document.write("<html><head>");
    win.document.write("<title>"+title+"</title>");
    win.document.write("<style>body { margin: 0px; padding: 0px; }</style>");
    win.document.write("<link href='/skins/inutrechtuit/css/text.css' type='text/css' rel='stylesheet'/>");
    win.document.write("</head>");
    win.document.write("<body bgcolor='#000000' id='popup'>");
    win.document.write("<div id='header'>"+title+"</div>");
    win.document.write("<div id='info' style='height: "+infoHeight+"px'>"+info.innerHTML+"</div>");
    win.document.write("</body></html>");
    return;
  },
  
  route: function (name, street, zipcode, city)
  {
    var src = "http://link2.map24.com/source/link2map/v2.0.0/cnt_pick_code.php?linksection=linkdestroute&" +
              "lid=ed2667ae&ol=nl-nl&dstreet="+street+"&dzip="+zipcode+"&dcity="+city+"&dcountry=nl&" +
              "ddescription="+name+"<br>"+street+"<br>"+zipcode+"+"+city+"+%28NL%29";
    var win = window.open("", "_blank", "width=220,height=261,resizable=yes");
    win.document.write("<html><head>");
    win.document.write("<title>Route map24</title>");
    win.document.write("<style>body { margin: 10px; padding: 0px; }</style>");
    win.document.write("</head>");
    win.document.write("<body bgcolor='#ffffff'>");
    win.document.write("<iframe width='200' height='241' scrolling='no' frameborder='0' src='"+src+"'></iframe>");
    win.document.write("</body></html>");
  },
  
  youtube: function (divId, title)
  {
    var info = document.getElementById(divId);
    
    var win = window.open("", "_blank", "width=425,height=350,resizable=yes");
    win.document.write("<html><head>");
    win.document.write("<title>YouTube video: "+title+"</title>");
    win.document.write("<style>body { margin: 0px; padding: 0px; }</style>");
    win.document.write("</head>");
    win.document.write("<body bgcolor='#000000' id='popup'>");
    win.document.write(info.innerHTML);
    win.document.write("</body></html>");    
    return;
  }
}
