// JavaScript Document
Image1 = new Image(250,184)
Image1.src = "images/layout/logos/rienks_groep.gif"

Image2 = new Image(250,184)
Image2.src = "images/layout/logos/rienks_architecten.gif"

Image3 = new Image(250,184)
Image3.src = "images/layout/logos/rienks_engineering.gif"

Image4 = new Image(250,184)
Image4.src = "images/layout/logos/rienks_bouwmanagement.gif"

function groep() {
	document.logo.src = Image1.src;
	return true;
}

function architecten() {
	document.logo.src = Image2.src;
  	return true;
}

function engineering() {
	document.logo.src = Image3.src;
	return true;
}

function bouwmanagement() {
	document.logo.src = Image4.src;
	return true;
}

function defaultText(text){
  var d = document.getElementById('tekstrechts');
  if(d != null) {
    if (linkloc == 1)
    d.style.pixelLeft=x;
    d.style.pixelTop=y;
    d.style.visibility="visible";
    d.innerHTML=(text);
  }
}

function PrintBox(text,linkloc,x,y) {
  var d = document.getElementById('tekstrechts');
  
  if(d != null) {
    if (linkloc == 1)
    d.style.pixelLeft=x;
    d.style.pixelTop=y;
    d.style.visibility="visible";
    d.innerHTML=(text);
  } 
}