// Javascript Document

function collapsablePanel(){
	var obj1 = document.getElementById('leftPanel');
	var obj2 = document.getElementById('rightPanel');
	
	if(obj2){
		obj1.style.marginRight = 200 + 'px';
	}
	else{
		obj1.style.marginRight = 15 + 'px';
	}
}


//window.onLoad = collapsablePanel();

