if (self!=parent.admed_main)
{
 document.cookie="entry="+location.pathname+location.hash+location.search+";path=/";
 if (document.cookie.indexOf("entry=")<0)
  location.replace("/?entry="+location.pathname+location.hash+location.search);
 else
  location.replace("/");
}
else
{
 if (parent.Refresh)
  parent.Refresh();
}

function ShowPict()
{
  var name = location.pathname.replace(/html/, "png");
  name = "pictures"+name.substring(name.lastIndexOf("/"), name.length);
//  document.write("<p><img style='float:right;border:thin #B00037 solid;' src='"+name+"'>");
  document.write("<p><img style='float:right' src='"+name+"'>");
}

function ShowDate()
{
 test = new Date(document.lastModified);

 Out="<p style='text-align:right;font-family:Verdana,sans-serif;font-size:xx-small'>&copy;AdQuipment medical b.v., "+
       test.getDate()+"-"+(test.getMonth()+1)+"-"+test.getFullYear()+"</p>";
 if (window.pdf||window.manual)
 {
  Pdf = location.pathname.substring(0, location.pathname.lastIndexOf("/"));
  Pdf = Pdf+"/pdf"+location.pathname.substring(Pdf.length, location.pathname.length).replace(/.html/,"");
  Out+="<div style='position:absolute;top:5px;left:5px'>";
  if (window.pdf)
   Out+="<a href='"+Pdf+".pdf' target='_blank' title='Brochure afdrukken'><img style='border:0;height:30px' src='/pictures/pdf.png' alt='Brochure afdrukken'></a>&nbsp;";
  if (window.manual)
   Out+="<a href='"+Pdf+"_kh.pdf' target='_blank' title='Verkorte handleiding'><img style='border:0;height:30px' src='/pictures/manual.png' alt='Verkorte handleiding'></a>";
  Out+="</div>";
 }
 document.write(Out); 
}


