/*function replace_content( id, s )
{

  alert("dsags");
  alert( s );

  var a = s.split("###");

  alert(a.length);


  var id_n = id + 1;
  if(id_n >= len)
    id_n = 0;

  var id_p = id - 1;
  if (id_p < 0)
    id_p = len - 1;

  var links = "<a href='' onclick='replace_content(" + id_p + "," + co_html + ");return false;'><img src='/static/img/fgs11_icons/pfeil_links.gif'  alt='zurück' /></a>"
            + "<a href='' onclick='replace_content(" + id_n + "," + co_html + ");return false;'><img src='/static/img/fgs11_icons/pfeil_rechts.gif' alt='vor' /></a>";



  window.document.getElementById('popup_head').innerHTML = links;

  window.document.getElementById('popup_content').innerHTML = co_html[id];

  return false;
}*/


function popup_co( content, title, style )
{
  var params = 'width=330, height=490, left=450, top=360, status=no, resizable=no, scrollbars=yes';

  win = window.open( '', 'co_popup', params );

  var doc = win.document;

  doc.open('text/html');

  doc.writeln( '<html><head>' );
  doc.writeln( '<title>' + title + '</title>' );
  doc.writeln( '<link rel="stylesheet" type="text/css" href="' + style + '" />' );
  doc.writeln( '</head><body>' );

  doc.writeln(' <div id="popup_content">' );
  doc.write( content );
  doc.writeln(' </div>' );

  doc.write( '</body></html>' );

  doc.close();

  return false;
}

