function toggle(active_field, hidden_field, hidden_content, active_content) {
	
	var active = document.getElementById(active_field);
	
	var hidden = document.getElementById(hidden_field);
	
	var hcontent = document.getElementById(hidden_content);
	
	var acontent = document.getElementById(active_content);
	
	if (active.style.display != "none" ) {
		
		active.style.display = 'none';
		hidden.style.display = '';
		hcontent.style.display = '';
		acontent.style.display = 'none';
	
	}
	else {
		
		active.style.display = '';
		hidden.style.display = 'none';
		hcontent.style.display = 'none';
		acontent.style.display = '';
	
	}

}

function email_window(url)
{

	window.open('../email/pop_up.php?url=' + url,'_blank','width=450, height=450, toolbars=no, scrollbars=yes, resize=no,');

}

function showGraphic(sFile, iWidth, iHeight, sTitle)
{
var wGraphic=window.open('','_blank','width='+parseInt(iWidth+60)+',height='+parseInt(iHeight+100)+',toolbars=no,resize=no,');
 
wGraphic.document.write('<html>\n<head>\n\n');

wGraphic.document.write('<title>The Tenon Group</title>\n<style>#center{text-align:center;} #center img{border:none;} .hyperlink{color:#666; text-decoration:none; font-weight:bold; font:15px Arial, Helvetica, sans-serif;}</style>\n</head>\n\n');

wGraphic.document.write('<body>\n');

wGraphic.document.write('<div id="center">\n');

wGraphic.document.write('<img src="'+sFile+'" width="'+iWidth+'" height="'+iHeight+'" border="1">\n');

wGraphic.document.write('' + sTitle + '');

wGraphic.document.write('<p><a href="#" onclick="window.close();" value="Close" class="hyperlink">Close Window</a></p>\n\n');

wGraphic.document.write('</body>\n</html>\n\n');

return null;

}