// statusbar boodschap
window.status="Welkom op Femma.nl"


// haal de randjes om plaatsen/links weg als je er op klikt 
function ExplorerFix() 
{ 
	for (a in document.links) document.links[a].onfocus = document.links[a].blur; 
} 
	if (document.all) document.onmousedown = ExplorerFix; 
	

// Copyright 2003 Eddie Traversa http://www.dhtmlnirvana.com/
// free to use as long as this copyright notice stays intact
var tags = new Array('table');
var pixelArray =  new Array('11','13');
var emArray =  new Array('0.9','1.1');
var initSize = 1;

function fontSizer(inc,unit) {
	if (!document.getElementById) 
		return;
	var size = initSize;
		size += inc;
	if (size < 0 ) {
		size = 0;
}
	if (size > 1 ) {
		size = 1;
}
		initSize = size;
		getBody = document.getElementsByTagName('body')[0];
	for (i = 0 ; i < tags.length ; i++ ) {
		getallTags = getBody.getElementsByTagName(tags[i]);
	for (k = 0 ; k < getallTags.length ; k++) 
		getallTags[k].style.fontSize = (unit=='px') ? pixelArray[size]+unit: emArray[size]+unit;
	}
}

// Popupscherm voor grote foto
function Groot(sPicURL) 
{ 
	window.open( "algemeen/groot.html?"+sPicURL, "",  "resizable=1,height=400,width=400"); 
}
