
function breakout_of_frame()
{
	if (top.location != location) 
	{
		top.location.href = document.location.href ;
	}
}



function jumploc(select)
{
	if(!select) return;
	if(!(select.value)) return;
	var href = select.value;
	if (href == '') return;
	if (href.indexOf("http://") <= 0) { document.location.href = href; }
	else { window.open(href,"","toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600"); }
}          



function wopen(url)
{
	var toolbar="no";
	var height="500";
	if (url.indexOf("questionnaire") > 0) { height="570"; }
	var win =	window.open(url, '', 'width=450, height='+height+', location=no, menubar=yes, status=yes, toolbar=' + toolbar + ', scrollbars=yes, resizable=yes');
	win.moveTo(0, 0);
}

function trackemail()
{
	window.open('/include/trackemail.php', '', 'width=1, height=1, location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=yes');
}


function team_expand(n)
{
	var person="person"+n;
	var button="button"+n;
	document.getElementById(person).style.display="block";
	document.getElementById(button).style.display="none";
}
function team_contract(n)
{
	var person="person"+n;
	var button="button"+n;
	document.getElementById(person).style.display="none";
	document.getElementById(button).style.display="inline";
}

function jump_to_question(old_div, new_div)
{
	var old_div="question"+old_div;
	var new_div="question"+new_div;
	document.getElementById(old_div).style.display="none";
	document.getElementById(new_div).style.display="block";
}
