// JavaScript Document //** close the script tag.*/ //** */ /*********************************************** * Image w/ description tooltip- By Dynamic Web Coding (www.dyn-web.com) * Copyright 2002-2007 by Sharon Paine * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ /* IMPORTANT: Put script after tooltip div or put tooltip div just before . */ var dom = (document.getElementById) ? true : false; var ns5 = (!document.all && dom || window.opera) ? true: false; var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false; var ie4 = (document.all && !dom) ? true : false; var nodyn = (!ns5 && !ie4 && !ie5 && !dom) ? true : false; var origWidth, origHeight; // avoid error of passing event object in older browsers if (nodyn) { event = "nope" } /////////////////////// CUSTOMIZE HERE //////////////////// // settings for tooltip // Do you want tip to move when mouse moves over link? var tipFollowMouse= true; // Be sure to set tipWidth wide enough for widest image var tipWidth= 500; var offX= 40; // how far from mouse to show tip var offY= 24; var tipFontFamily= "Verdana, arial, helvetica, sans-serif"; var tipFontSize= "8pt"; // set default text color and background color for tooltip here // individual tooltips can have their own (set in messages arrays) // but don't have to var tipFontColor= "#000000"; var tipBgColor= "#DDECFF"; var tipBorderColor= "#9900FF"; var tipBorderWidth= 5; var tipBorderStyle= "ridge"; var tipPadding= 4; // tooltip content goes here (image, description, optional bgColor, optional textcolor) var messages = new Array(); // multi-dimensional arrays containing: // image and text for tooltip // optional: bgColor and color to be sent to tooltip messages[0] = new Array('','Information relating to this entry will appear in this location shortly.',"#FFFFFF"); messages[1] = new Array('','BILNEY - WALTERS - Kalangadoo Cemetery.
Coral B Bilney died 11 April 1942.
Harriet Joyce Bilney died 4 August 1994
Alice Dorothy Walters died 13 March 1930 aged 32 years.
Myra Walters born 17 January 1927 died 2 April 1928 aged 1 year 3 months. All members of information providers’s late mother.
Information provided by family member - agrural1@dodo.com.au.',"#FFFFFF"); messages[2] = new Array('','John CHUCK - Kalangadoo Cemetery.
Died 2 March 1936 aged 51 years. Husband of Myrtle, father of seven - William, Walyter, Gladys, Alice, Percival, Alan and Mary (all deceased).
Information provided by Diane Heppleston - Email: ahepples@bigpond.net.au
',"#FFFFFF"); messages[3] = new Array('','AYLIFFE - Kingscote Cemetery -Information provided by Cathryn Ayliffe - cathryn.ayliffe@gmail.com
Cathryn Ayliffe wrote:
This is my great grandmother, Catherine Ayliffe. My family has a book with more information. She had about 6 sons, 3 died in the war. My grandfather Leo Ayliffe was the oldest. Burt and others are still alive. They have Anzac stories in the Advertiser now and then about them. She wrote to the King and got the other sons out of harms way. I remember her sending us a package each Xmas until 1973. We lived at McLaren Vale at the time. I was named Cathryn which was after her and my other great grandmother Kathryn.
Our family are early settlers to Adelaide and Kangaroo Island. Settled in Adelaide in 1838, third boat of settlers. Some settled on KI.
Her husband was Lional (not sure spelling). He was also called Leo. He died before about 1965.',"#FFFFFF"); messages[4] = new Array('','LAMBERT - Kingscote Cemetery. - Information provided by daughter Suzanne - Email: suesmith@lizzy.com.au',"#FFFFFF"); messages[5] = new Array('','STANGER, Maud - Kingscote Cemetery.
George has an autograph album with a poem, written by Maud Stanger on April 9th 1915.
The poem (not sure if it was actually one of Maud’s poems) is entitled Spring Twilight.
The age might tie in with this Maud Stanger.
The page was written probably in the area of Chester, England.
Contact George - Email: george91@talktalk.net',"#FFFFFF"); messages[6] = new Array('','OLSEN - Kyancutta Cemetery
Ted Thomasson, a researcher of vintage Australian airmail items for the Australian National Aviation Museum in Melbourne, has an envelope (nothing inside) addressed to Mrs Fred Olsen of Kyancutta and sent from Pinnaroo in 1931.
Ted would scan the envelope if anyone is interested, and hopefully someone may have some information on the local airport in Kyancutta, which was closed down in 1945.
Contact Ted - tedthomasson@hotmail.com',"#FFFFFF"); messages[7] = new Array('','ROWETT, Robert Linton - Melrose Cemetery.
Born 16th January 1893. Died 14th February 1893. Son of Thomas Edwin Rowett, born South Australia 1860 died Mundijong Western Australia 17th June 1921, and, Adah (Shephard) born Marion, South Australia 17th August 1862, died Perth, Western Australia 27th August 1943. Brother to Edith Anne Rowett, Stanley Arthur Rowett, and Ada Rosavear Rowett.
Information provided by Phillip Rowett - email: pr1956@yahoo.com.
',"#FFFFFF"); messages[8] = new Array('','MC EVOY, Alice Galla - Minnipa Cemetery.
Alice married Edwin Robert McEvoy and took up the Section 6 - Hundred of Cungena. They had 9 children:
Irene Alice McEvoy
Joseph John McEvoy ( Joe )
Patrick Cyril McEvoy (Pat)
Marjorie Cecelia McEvoy (Marj)
Robert Mannix McEvoy (Bob)
Florence Ann McEvoy ( Tip )
Edwin James(Ted)McEvoy (Ted)
Doreen Patricia McEvoy
Pat and Ted are also buried in Minippa Cemetery.
At the time of this email date only one of the children is now living ie: Doreen. Doreen is my mother
Pamela Spencer - email: pam206@bigpond.com/
',"#FFFFFF"); messages[9] = new Array('','BATIS John - Nackara Cemetery.
Son of John M Batis ex Thebarton, South Australia.
Information provided by Mick Willis - mick47willis@yahoo.com.au',"#FFFFFF"); messages[10] = new Array('','Information relating to this entry will appear in this location shortly.',"#FFFFFF"); messages[11] = new Array('','Click on the name for more information.',"#FFFFFF"); messages[12] = new Array('','Click on the name for more information.',"#FFFFFF";) //////////////////// END OF CUSTOMIZATION AREA /////////////////// // preload images that are to appear in tooltip // from arrays above if (document.images) { var theImgs = new Array(); for (var i=0; i'; var endStr = ''; //////////////////////////////////////////////////////////// // initTip - initialization for tooltip. // Global variables for tooltip. // Set styles // Set up mousemove capture if tipFollowMouse set true. //////////////////////////////////////////////////////////// var tooltip, tipcss; function initTip() { if (nodyn) return; tooltip = (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null; tipcss = tooltip.style; if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites tipcss.width = tipWidth+"px"; tipcss.fontFamily = tipFontFamily; tipcss.fontSize = tipFontSize; tipcss.color = tipFontColor; tipcss.backgroundColor = tipBgColor; tipcss.borderColor = tipBorderColor; tipcss.borderWidth = tipBorderWidth+"px"; tipcss.padding = tipPadding+"px"; tipcss.borderStyle = tipBorderStyle; } if (tooltip&&tipFollowMouse) { document.onmousemove = trackMouse; } } window.onload = initTip; ///////////////////////////////////////////////// // doTooltip function // Assembles content for tooltip and writes // it to tipDiv ///////////////////////////////////////////////// var t1,t2; // for setTimeouts var tipOn = false; // check if over tooltip link function doTooltip(evt,num) { if (!tooltip) return; if (t1) clearTimeout(t1); if (t2) clearTimeout(t2); tipOn = true; // set colors if included in messages array if (messages[num][2]) var curBgColor = messages[num][2]; else curBgColor = tipBgColor; if (messages[num][3]) var curFontColor = messages[num][3]; else curFontColor = tipFontColor; if (ie4||ie5||ns5) { var tip = startStr + messages[num][0] + midStr + '' + messages[num][1] + '' + endStr; tipcss.backgroundColor = curBgColor; tooltip.innerHTML = tip; } if (!tipFollowMouse) positionTip(evt); else t1=setTimeout("tipcss.visibility='visible'",100); } var mouseX, mouseY; function trackMouse(evt) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; if (tipOn) positionTip(evt); } ///////////////////////////////////////////////////////////// // positionTip function // If tipFollowMouse set false, so trackMouse function // not being used, get position of mouseover event. // Calculations use mouseover event position, // offset amounts and tooltip width to position // tooltip within window. ///////////////////////////////////////////////////////////// function positionTip(evt) { if (!tipFollowMouse) { mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; } // tooltip width and height var tpWd = (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth; var tpHt = (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight; // document area in view (subtract scrollbar width for ns) var winWd = (ns5)? window.innerWidth-20+window.pageXOffset: standardbody.clientWidth+standardbody.scrollLeft; var winHt = (ns5)? window.innerHeight-20+window.pageYOffset: standardbody.clientHeight+standardbody.scrollTop; // check mouse position against tip and window dimensions // and position the tooltip if ((mouseX+offX+tpWd)>winWd) tipcss.left = mouseX-(tpWd+offX)+"px"; else tipcss.left = mouseX+offX+"px"; if ((mouseY+offY+tpHt)>winHt) tipcss.top = winHt-(tpHt+offY)+"px"; else tipcss.top = mouseY+offY+"px"; if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100); } function hideTip() { if (!tooltip) return; t2=setTimeout("tipcss.visibility='hidden'",100); tipOn = false; } document.write('')