
function position_style3_sep() {

	sep = document.getElementById('style3_sep_div');

	sep.style.height = "100px";

	tble = document.getElementById('style3_content_table');
		
	sep.style.height = (tble.offsetHeight - 43) + "px";

}


function bio_details_click(bio_id, bio_num) {
	if (bio_num==1) {
		off_num = 2;

	} else if (bio_num==2) {
		off_num = 1;	

	}
	
	detail_id = "bio_details_" + bio_id + "_" + bio_num;
	detail = document.getElementById(detail_id);
	
	off_id = "bio_details_" + bio_id + "_" + off_num;
	off = document.getElementById(off_id);
	
	arrow_id = "bio_info_arrow_icon_" + bio_id + "_" + bio_num;
	arrow = document.getElementById(arrow_id);
	
	click_id = "bio_info_click_" + bio_id + "_" + bio_num;
	click = document.getElementById(click_id);
	
	off_arrow_id = "bio_info_arrow_icon_" + bio_id + "_" + off_num;
	off_arrow = document.getElementById(off_arrow_id);
	
	off_click_id = "bio_info_click_" + bio_id + "_" + off_num;
	off_click = document.getElementById(off_click_id);
	
	if (detail != null) {	
		if (detail.style.display == "none") {
			detail.style.display = "block";
		
			if (arrow != null) {
				arrow.src = "images/" + bio_arrow_down;
			}
			
			if (click != null) {
				click.className = "bio_info_click_active";
			}

		} else {
			detail.style.display = "none";
			
			if (arrow != null) {
				arrow.src = "images/" + bio_arrow_right; 
			}
			
			if (click != null) {
				click.className = "bio_info_click";
			}

		}
	}
	
	if (off != null) {
		off.style.display = "none";
	
	}

	if (off_arrow != null) {
		off_arrow.src = "images/" + bio_arrow_right;
	}

	if (off_click != null) {
		off_click.className = "bio_info_click";
	}
	
	position_style3_sep();

}