function setRightColHeight() {
	var pageHeight = Math.max($(window).height(),550);
	var pageWidth = Math.max($(window).width(),300);
	$('#mainContent').height(pageHeight - 117);
	//$('#mainContent').width(pageWidth - $('#content').width());
	$('#scrollContent').height(pageHeight-279);
}
	
$(function() {
	$(window).resize(function() {
		setRightColHeight()
	});
	setRightColHeight();
	//initLayout();
});

function showPopup( htmlFile, wWindow, hWindow ) {
	var lWindow = (screen.width-wWindow)/2;
	var tWindow = (screen.height-hWindow)/2;
	window.open(htmlFile,'popup','toolbar=no,top=' + tWindow + 'location=no,left='+ lWindow + 'directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,width=' + wWindow + ',height=' + hWindow);
}

function showLightbox(url, width, height) {
	
	url = typeof(url) != 'undefined' ? url : '/';
	width = typeof(width) != 'undefined' ? width : 955;
	height = typeof(height) != 'undefined' ? height : 450;
	
	$.fancybox({
		'type'			: 'iframe',
		'width'			: width,
		'height'		: height,
		'autoScale'		: false,
		'padding'		: 0,
		'overlayOpacity' : 0.9,
		'overlayColor'  : '#000',
		'href'			: url
	});
}
