// JavaScript Document

function popUp(url,w,h,scrol){
	if(!scrol){
		srol = 'auto';
	}
	newwindow = window.open(url,'popUp','toolbar=0,scrollbars='+scrol+',location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+',left='+Math.round((window.screen.width/2)-(w/2))+',top='+Math.round((window.screen.height/2)-(h/2)));
	newwindow.focus();
}

$(document).ready(function() {
	$('#sidebar-left').height( $('#content-right-column').height() );
});