// ===================================================================
// Author: Kolibrie Creatieve Media (c) 2006
// http://www.kolibrie.net/
// ===================================================================

function objRef(id) {return document.getElementById(id)}
function styleRef(id) {return this.objRef(id).style}

function init() {
	setHeight('content',-90);
}

function setHeight(id,offset) {
	if (objRef(id)) {
		if (window.innerHeight) hoogte=parseInt(window.innerHeight)           // FireFox en Safari
		else if (document.all) hoogte=parseInt(document.body.clientHeight)    // Internet Explorer
		styleRef(id).height=(hoogte+offset)+'px'
	}
}

function hl(id){
	b=id.src;
	s=(b.substring(b.length-4,b.length-5)==0)?'1':'0';
	id.src=(b.substring(b.length-5,0)+s+b.substring(b.length,b.length-4));
}



