
function OpnaMynd( url, width, height )
{
  if( url )
  {
    var winProps = 'scrollbars=no,status=no,fullscreen=no,width=';
    winProps += (parseInt(width) + 30 );
    winProps += ',height=';
    winProps += (parseInt(height) + 30);
    winProps += '';
    
    var imageWin = window.open( url, '', winProps );
    imageWin.focus();
  }
}

function PrintContent( id )
{
  var title = document.all.item('titlearea').innerHTML;
  var content = document.all.item('contentarea').innerHTML;
  
  var printWin = window.open('', 'print_win', 'width=720, height=650, scrollbars=yes, resizable=yes' );
  printWin.document.open();
  printWin.document.write( '<head><title>Prenta efni</title><link rel="stylesheet" href="css/print.css">' );
  printWin.document.write( '<\/head><body onload="window.print(); self.close();">' );
  printWin.document.write( '<h3>' );
  printWin.document.write( title );
  printWin.document.write( '</h3>' );
  printWin.document.write( content );
  printWin.document.write( '<\/body>' );
  printWin.document.close();
}

function OpnaLoftmynd()
{
  //window.open( 'loftmyndir/loftmyndir.asp', 'loftmyndir', 'width=700, height=600' );
  var res = window.open('http://www2.loftmyndir.is/kortasja/olfus.asp', 'kortasja', 'width=1020,height=670,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no');
}