var fixHeight = function()
{
	
	var winHeight = window.getScrollHeight();
	($('banner')) ? 
		$('centerCol').setStyle('height',(winHeight-140)+'px'):
		$('centerCol').setStyle('height',winHeight+'px');
	$('wrapper').setStyle('height',winHeight+'px');
	$('bigCol').setStyle('height',winHeight+'px');
	
	if ($('footer')) $('footer').setStyle('display','block');
	
}

var openWindow = function(url)
{
	
	window.open(url,'DBH Consulting','width=700,height=500,menubar=no,status=no,directories=no,location=no,toolbar=no,scrollbars=no,resizable=no');
	
}


window.addEvent('domready', function()
{
	
	fixHeight();
	var checkWin = function() {fixHeight();}.periodical(250);
	$$('a.openPop').each(function(node){
		
		var url = node.getAttribute('href');
		node.set('href','javascript:;');
		node.addEvent('click',function(){
			
			openWindow(url);
			
		}.bind(this));
		
	}.bind(this));
	
});