
var panelclick = 0;
var panelbig = 0;
var panelboxbig = 0;

var panelsmall = 0;
var panelboxsmall = 0;
var boxheightquery = 0;


function panel() {

if (panelclick == 0) {
panel3();
document.getElementById("panel_holder").value = "1";
store_form_panel();
document.getElementById("ort_open").style.display = 'none'; 
document.getElementById("ort_closed").style.display = 'block'; 
}

if (panelclick == 1) {
panel4();
document.getElementById("panel_holder").value = "2";
store_form_panel();
document.getElementById("ort_open").style.display = 'block'; 
document.getElementById("ort_closed").style.display = 'none'; 
}

}



function panel3() {


if (panelboxbig >= panelholder) {
document.getElementById("ort_panel").style.height = panelholder +'px';
panelclick = 1;
panelboxbig = 0;
panelbig = 0;
}
else {
	if (navigator.userAgent.indexOf("Firefox")!=-1) {
	window.setTimeout('increasepanelbox()',50);
	}
	else {
	window.setTimeout('increasepanelbox()',1);
	}
}
}


function increasepanelbox() {
document.getElementById("ort_panel").style.height = panelboxbig +'px';
panel3();
panelboxbig = panelboxbig + 20;
}


function panel4() {

if (document.getElementById("ort_panel").offsetHeight > 1)
{
window.setTimeout('decreasepanelbox()',50);
}

}

function decreasepanelbox() {

panelheightquery = document.getElementById("ort_panel").offsetHeight;
panelheightquery = panelheightquery*1;

document.getElementById("ort_panel").style.height = panelheightquery - 20 +'px';


if (document.getElementById("ort_panel").offsetHeight < 20) {
document.getElementById("ort_panel").style.height = '0px';
panelclick = 0;
}


panel4();
}


var ort_right_column_height = 0;
var ort_main_column_height = 0;

var ort_right_column_inner_height = 0;
var ort_main_column_inner_height = 0;

function ort_set_body_height() {
	if (document.getElementById("ort_right_column")) {
		if (document.getElementById("ort_content_area")) {
		
		if ((ort_right_column_inner_height != document.getElementById("ort_right_column_inner").offsetHeight) || (ort_main_column_inner_height != document.getElementById("ort_content_area_inner").offsetHeight)){
				document.getElementById("ort_content_area").style.height = "auto";
				document.getElementById("ort_right_column").style.height = "auto";
				ort_right_column_height = document.getElementById("ort_right_column").offsetHeight;
				ort_main_column_height = document.getElementById("ort_content_area").offsetHeight;
			
				if (ort_right_column_height > ort_main_column_height) {
					document.getElementById("ort_content_area").style.height = ort_right_column_height + "px";
				}
				
				if (ort_right_column_height < ort_main_column_height) {
					document.getElementById("ort_right_column").style.height = ort_main_column_height + "px";
				}
				
				ort_right_column_height = document.getElementById("ort_right_column").offsetHeight;
				ort_main_column_height = document.getElementById("ort_content_area").offsetHeight;
				
				ort_right_column_inner_height = document.getElementById("ort_right_column_inner").offsetHeight;
				ort_main_column_inner_height = document.getElementById("ort_content_area_inner").offsetHeight;
			}
			
		}
	}
}


var ort_body_Interval = 0;
ort_body_Interval = window.setInterval("ort_set_body_height()",200);

