function vulcontent(naam)
{ parent.content.location=naam; 
}

function changeSize(id)
{ var h=document.getElementById(id).height;
  var w=document.getElementById(id).width;
  var r=h/w;
  if (w>600) {w=600; h=r*w; }
  document.getElementById(id).height=h;
  document.getElementById(id).width=w;
}


var fotostijl ='<style> img   {border: 0px solid; box-shadow: 10px 10px `0px #888888; -moz-box-shadow: 10px 10px 5px #888888;  -webkit-box-shadow: 10px 10px 5px #888888; }</style>';
var tabelstijl='<style> table {font-family:"verdana"; font-size: 10px; letter-spacing:1px; padding:1px;} </style>';
var tdstijl   ='<style> td    {text-align:left; vertical-align:top; padding: 15px;} </style>';

function pkvenster(url,titel)
{tmp=window.open(url,'Tekstvenster','height=768,width=1024');}

function pikvenster(url,titel)
{tmp=window.open(url,'Tekstvenster','height=768,width=1024');
 tmp.document.write('<html><head><title>'+titel+'</title>');
 tmp.document.write(fotostijl);
 tmp.document.write(tabelstijl);
 tmp.document.write(tdstijl);
 tmp.document.write('</head><body>');
 tmp.document.write('<table><tr><td width=300><center><input type="button" value="Sluit dit venster" onClick="self.close()" ></center><br/><br/>');
 tmp.document.write(tekst+'</td><td><img src='+foto+' /></td></tr></table>');
 tmp.document.write('niks');
 tmp.document.write('<body></html>');
 tmp.document.close()
}

function fotovenster(foto,tekst,breedte)
{if (foto==null)  return;
 if (tekst==null) tekst='';
 if (breedte==null) breedte=1024;
 tmp=window.open('Fotovenster','fotovenster','height=750,width='+breedte+',location=no, resizable=yes');
 tmp.document.write('<html><head><title>foto</title>');
 tmp.document.write(fotostijl);
 tmp.document.write(tabelstijl);
 tmp.document.write(tdstijl);
 tmp.document.write('</head><body>');
 tmp.document.write('<table><tr><td width=300><center><input type="button" value="Sluit dit venster" onClick="self.close()" ></center><br/><br/>');
 tmp.document.write(tekst+'</td><td><img src='+foto+' /></td></tr></table>');
 tmp.document.write('<body></html>');
 tmp.document.close();
 tmp.focus();
}

