var message="Welkom bij Telecom ABC.";
var Vensteropen=false;

function openVenster(pagina,titel,breedte,hoogte) {
  if (Vensteropen){mijnVenster.close();} else {Vensteropen=true}
  mijnVenster= open("", "displayWindow", 
    "width=" + breedte +",height=" + hoogte +",status=no,toolbar=no,menubar=no,hotkeys=no,dependent=yes");
  // open document for further output
  mijnVenster.document.open();
  
  // create document 
     mijnVenster.document.write("<html><head><title>");
     mijnVenster.document.write(titel + " - Telecom ABC</title>");
     mijnVenster.document.write("</head>");
     mijnVenster.document.write("<FRAMESET ROWS=\"\*\" "); 
     mijnVenster.document.write(" BORDER=\"0\""); 
     mijnVenster.document.write(" BORDERCOLOR=\"#FFFFFF\">");
     mijnVenster.document.write(" <FRAME SRC=\"" +pagina +"\" ");
     mijnVenster.document.write(" SCROLLING=\"NO\" ");
     mijnVenster.document.write("MARGINWIDTH=\"0\"> ");
     mijnVenster.document.write("</FRAMESET>");
     mijnVenster.document.write("<NOFRAMES>");
     mijnVenster.document.write("<BODY>");
     mijnVenster.document.write("Sorry, deze pagina is alleen te");
     mijnVenster.document.write(" bekijken met een browser die frames ondersteunt.");
     mijnVenster.document.write("</BODY>");
     mijnVenster.document.write("</NOFRAMES>");
     mijnVenster.document.write("</HTML>");

  // close the document - (not the window!)
     mijnVenster.document.close();  
}

function sluitVenster() {
    parent.window.close();
    Vensteropen = false;
}

function openLink(pagina) {
  myWin= open(pagina, "displayLink", 
    "width=800,height=600,status=yes,toolbar=yes,menubar=yes,resizable=yes");
}

function inkleur(naam) {
naam.style.backgroundColor="#FFFF00";
}

function uitkleur(naam) {
naam.style.backgroundColor="transparent";
}

function inhoudinkleur(naam) {
naam.style.backgroundColor="#FFFF80";
}

function inhouduitkleur(naam) {
naam.style.backgroundColor="#CCCCCC";
}


