function breakout_of_frame(){
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}
function showOwner(value){
	if (value == "no"){
		document.getElementById('hiddentitle').value = "";
		document.getElementById('hiddenownerhsip').value = "";
	}
	if (value == "yes"){
		document.getElementById('hiddentitle').value = "OWNER";
		document.getElementById('hiddenownership').value = document.getElementById('first_name').value + " " + document.getElementById('last_name').value;
	} 
}
function showMember(value){
	if (value == "no"){
		document.getElementById('memberinfo').style.display = "none";
	}
	if (value == "yes"){
		document.getElementById('memberinfo').style.display = "inline";		
	} 
}
var ourInterval;
var scrollSpeed = 50;
var scrollHeight = 5;

function scrollStart(direction, divID, elementID){ 
// REPEATED CALL EITHER scrollUp OR scrollDown
	ourInterval = setInterval("scroll" + direction + "('" + divID + "')", scrollSpeed);
}

function scrollEnd(which){
// STOP CALLING THE SCROLL FUNCTION
	clearInterval(ourInterval);
}


function scrollUp(which){
// SET THE SCROLL TOP
	document.getElementById(which).scrollTop = document.getElementById(which).scrollTop - scrollHeight;
}
function scrollDown(which){
// SET THE SCROLL TOP
	document.getElementById(which).scrollTop = document.getElementById(which).scrollTop + scrollHeight;
}

