<!------------------------------------------------------------->
<!-- COPYRIGHT (C) BERNY GOODHEART 2002 ALL RIGHTS RESERVED. -->
<!-- NO PART OF THIS PRODUCT MAY BE REPRODUCED, STORED       -->
<!-- IN A RETRIEVAL SYSTEM, OR TRANSMITTED IN ANY FORM OR    -->
<!-- BY ANY MEANS, ELECTRONIC, MECHANICAL, PHOTOCOPYING,     -->
<!-- RECORDING OR OTHERWISE, WITHOUT THE EXPRESS WRITTEN     -->
<!-- PERMISSION OF THE COPYRIGHT HOLDER.                     -->
<!------------------------------------------------------------->

<!-- Hide this from JavaScript-Impaired Browsers


// ######################################
// START OF USER CONFIGURABLE PARAMETERS
// ######################################

var homeperson 		= 	"244"		;
var title		= 	"The genealogical family tree of Sarah McFall (25/Apr/02)"		;
var content		=	"zip"		;
var url			=	"McFall.zip"	;
var zipbuffersize	=	"16384"		;
var showbirth		=	"true"		;
var showdeath		=	"true"		;
var showmarriage	=	"true"		;
var showoccupation	=	"true"		;
var showreference	=	"false"		;
var showalias		=	"true"		;
var showid		=	"true"		;
var showstats		=	"true"		;
var shownavigator	=	"true"		;
var showbirthplace	=	"true"		;
var showdeathplace	=	"true"		;

// Look similar to GreatFamily
var backgroundcolor	=	"6AA3D3"	;
var malelinescolor	=	"000080"	;
var femalelinescolor	=	"800000"	;
var spouselinescolor	=	"A300D0"	;
var showgender		=	"false"		;
var simplelines		=	"false"		;
var showboxshadow	=	"true"		;

// Look similar to GenDesigner 2.0 beta 3.6 Colors (default).
//var backgroundcolor	=	"4A8C8C"	;
//var malelinescolor	=	"000080"	;
//var femalelinescolor	=	"800000"	;
//var spouselinescolor	=	"00FF00"	;
//var showgender	=	"true"		;
//var simplelines	=	"true"		;
//var showboxshadow	=	"false"		;

// Make your own Colors up
//var backgroundcolor	=	"000000"	;
//var malelinescolor	=	"0000FF"	;
//var femalelinescolor	=	"FF0000"	;
//var spouselinescolor	=	"FFFF00"	;
//var showgender	=	"true"		;

// Gender Colors (default).
var malegendercolor	=	"C1DEFF"	;
var femalegendercolor	=	"FFC1C1"	;

// Color of an alias
//var aliascolor	=	"00FF00"	;
var aliascolor		=	"FFFF00"	;

// show lines on move (bad with netscape)
var showmovelines	=	"true"		;

// Inverse color for when moving
var inversecolor	=	"000000"	;

// info html details spec
var showdetails		=	"false"		;
var window		=	"DataWindow"	;
var htmllocation	=	"file:/C:"	;
//var htmllocation	=	"http://"	;

// exporting
var exportmode		=	"false"		;

// ######################################
// END OF USER CONFIGURABLE PARAMETERS
// ######################################
















// ==========================================
// ==========================================
// WARNING: Do not change anything below here.
// ==========================================
// ==========================================

function ShowMyFamilyTree() {

	//
	// resize the browser window to full screen
	//
	self.moveTo(0,0)
	self.resizeTo(screen.availWidth, screen.availHeight)

	//
	// now adjust applet to 95% of width and 90% of height
	//


	w = Math.round((screen.availWidth / 100) * 95);
	h = Math.round((screen.availHeight / 100) * 72);

	document.write(
		  "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">"
		+ "<html>"
		+ "<head>"
		+ "<title>"
		+ "GenFamilyViewer Copyright (C) Berny Goodheart 2002"
		+ "</title>"
		+ "</head>"
		+ "<body bgcolor=\"#000040\" text=\"#F9FFF0\">"
		+ "<center>"
		+ "<!-- Adjust the width and height of the applet here. -->"
		+ "<applet code=\"Viewer.class\" archive=\"GenFamilyViewer.jar\" name=\"GenFamilyViewer\" "
		+ "width=\"" + w + "\" height=\"" + h + "\">"
		+ "<param name=\"cabbase\" value=\"GenFamilyViewer.cab\">"
		+ "<param name=\"content\" value=\"" + content + "\">"
		+ "<param name=\"url\" value=\"" + url + "\">"
		+ "<param name=\"title\" value=\"" + title + "\">"
		+ "<param name=\"zipbuffersize\" value=\"" + zipbuffersize + "\">"
		+ "<param name=\"homeperson\" value=\"" + homeperson + "\">"
		+ "<param name=\"showbirth\" value=\"" + showbirth + "\">"
		+ "<param name=\"showdeath\" value=\"" + showdeath + "\">"
		+ "<param name=\"showbirthplace\" value=" + showbirthplace + ">"
		+ "<param name=\"showdeathplace\" value=" + showdeathplace + ">"
		+ "<param name=\"showmarriage\" value=\"" + showmarriage + "\">"
		+ "<param name=\"showoccupation\" value=\"" + showoccupation + "\">"
		+ "<param name=\"showreference\" value=\"" + showreference + "\">"
		+ "<param name=\"showalias\" value=\"" + showalias + "\">"
		+ "<param name=\"showid\" value=\"" + showid + "\">"
		+ "<param name=\"showstats\" value=\"" + showstats + "\">"
		+ "<param name=\"simplelines\" value=\"" + simplelines + "\">"
		+ "<param name=\"showboxshadow\" value=\"" + showboxshadow + "\">"
		+ "<param name=\"shownavigator\" value=\"" + shownavigator + "\">"
		+ "<param name=\"backgroundcolor\" value=\"" + backgroundcolor + "\">"
		+ "<param name=\"malelinescolor\" value=\"" + malelinescolor + "\">"
		+ "<param name=\"femalelinescolor\" value=\"" + femalelinescolor + "\">"
		+ "<param name=\"spouselinescolor\" value=\"" + spouselinescolor + "\">"
		+ "<param name=\"showgender\" value=\"" + showgender + "\">"
		+ "<param name=\"malegendercolor\" value=\"" + malegendercolor + "\">"
		+ "<param name=\"femalegendercolor\" value=\"" + femalegendercolor + "\">"
		+ "<param name=\"aliascolor\" value=\"" + aliascolor + "\">"
		+ "<param name=\"inversecolor\" value=\"" + inversecolor + "\">"
		+ "<param name=\"showdetails\" value=\"" + showdetails + "\">"
		+ "<param name=\"window\" value=\"" + window + ">"
		+ "<param name=\"htmllocation\" value=\"" + htmllocation + "\">"
		+ "<param name=\"exportmode\" value=\"" + exportmode + "\">"
		+ "<param name=\"showmovelines\" value=\"" + showmovelines + "\">"
		+ "<!-- HTML message for non Java visitors goes below here. -->" 
		+ "Unable to run GenFamilyViewer because your browser does not support Java and/or Javascript or these facilities are not enabled in your browser." 
		+ "</applet><P>"
		+ "<A HREF=\"http://homepage.ntlworld.com/berny.goodheart/index.html\"><IMG SRC=\"previous5.gif\" ALT=\"Previous page\"></A>"
		+ "</center>"
		+ "</body>"
		+ "</html>"
	);

}

//-->