<!--
function init() {
  externalLinks();
  init_flash();
  //P7_equalCols2(0,'right','p','left','p');
}

window.onload = init;


function setWebdesignBy() {
	if( window.innerHeight && window.scrollMaxY ) // Firefox
	{
	pageWidth = window.innerWidth + window.scrollMaxX;
	pageHeight = window.innerHeight + window.scrollMaxY;
	}
	else if( document.body.scrollHeight > document.body.offsetHeight ) // all but Explorer Mac
	{
	pageWidth = document.body.scrollWidth;
	pageHeight = document.body.scrollHeight;
	}
	else // works in Explorer 6 Strict, Mozilla (not FF) and Safari
	{
	pageWidth = document.body.offsetWidth + document.body.offsetLeft;
	pageHeight = document.body.offsetHeight + document.body.offsetTop;
	}
	if (pageHeight <= document.body.clientHeight) {
		document.getElementById('footer').style.position = 'relative';
		document.getElementById('footer').style.top = '' + (document.body.clientHeight - 620) + 'px';
	}
}
//-->

