function setPlannerStuff()
{
/*
get host
if 'host' contains 'www.' at the begining
	if the word 'hillross' starts at char(4)
		planner = false, ie. page has not come from the planner's site
	else
		planner = true, ie. page has come from planner's site
else // this is just in case, if URL doesn't contain 'www'
	if the word 'hillross' starts at char(0)
		planner = false, ie. page has not come from the planner's site
	else
		planner = true, ie. page has come from planner's site
*/

    var _planner = false
    var _host = (window.location.host).toUpperCase()

    var li = (_host).indexOf("WWW.")
    if( li == 0 )
    {
	    li = (_host).indexOf("HILLROSS")
	    if(li == 4)
		    _planner = false
	    else
		    _planner = true
    }
    else
    {
	    li = (_host).indexOf("HILLROSS")
	    if(li == 0)
		    _planner = false
	    else
		    _planner = true
    }

    if(_planner)
    {
	    // if from planner's site, adjust both <SPAN> elements and hide 2 rows (related to the Contact details) on tab3
	    document.getElementById("span1").innerHTML="Hillross Financial Planner"
	    document.getElementById("span2").innerHTML=""
	    document.getElementById("row1").style.display = "none";
	    document.getElementById("row2").style.display = "none";
    }
    else
    {
	    // if not from planner's site, adjust both <SPAN> elements and show 2 rows (related to the Contact details) on tab3
	    document.getElementById("span1").innerHTML="<A class=LNmg1 href=\"javascript:openInMain('http://www.hillross.com.au')\">Hillross Financial Planner</A>"
	    document.getElementById("span2").innerHTML="&nbsp;If you do not have a financial planner, you can:"
	    document.getElementById("row1").style.display = "";
	    document.getElementById("row2").style.display = "";
    }
}