ccity = geoip_city();
cstate = geoip_region_name();

function Home1()
{
	var home1 = "with 3 locations in Adelaide";	
	switch(cstate)
	{
		case "Victoria":
			home1 = "with fast delivery in metropolitan Melbourne and anywhere in " + cstate;	
			break;
		case "New South Wales":
			home1 = "with fast delivery in metropolitan Sydney and anywhere in " + cstate;
			break;
		case "Australian Capital Territory":
			home1 = "with fast delivery in Canberra and anywhere in ACT";
			break;
		case "Queensland":
			home1 = "with fast delivery in Brisbane, Gold Coast and anywhere in " + cstate;	
			break;
		case "Tasmania":
			home1 = "with fast delivery in Hobart and anywhere in " + cstate;	
			break;
		case "Western Australia":
			home1 = "with fast delivery in Perth and anywhere in " + cstate;
			break;
		case "Northern Territory":
			home1 = "with fast delivery in Darwin and anywhere in the " + cstate;
			break;
		case "South Australia":	
		default:
			break;
	}

	document.write(home1);
}

function Home2()
{
	if(cstate=="South Australia")
		document.write("Visit as at a <a href='http://www.abbott22.com/locations/' target='_blank'>location near you</a>, or have your finished printing jobs delivered. ");
}

function Home3()
{
	var home1 = "in metropolitan Adelaide";	
	switch(cstate)
	{
		case "Victoria":
			home1 = "in metropolitan Melbourne";	
			break;
		case "New South Wales":
			home1 = "in metropolitan Sydney";
			break;
		case "Australian Capital Territory":
			home1 = "in Canberra";
			break;
		case "Queensland":
			home1 = "in Brisbane, Gold Coast";	
			break;
		case "Tasmania":
			home1 = "in Hobart";	
			break;
		case "Western Australia":
			home1 = "in Perth";
			break;
		case "Northern Territory":
			home1 = "in Darwin";
			break;
		case "South Australia":	
		default:
			break;
	}

	home1 += ", 3-5 days anywhere in " + cstate;
	document.write(home1);
}

function Loc1()
{
	if(cstate!="South Australia")
	{
		document.write("<p>With 3 printing locations in SA for load balancing, we're a major Australia-wide supplier of printing services and stationery supplies. Fast delivery to your doorstep in " + ccity + " and anywhere in " + cstate + " - please <a href='#contact'><strong>contact us for all your printing jobs and stationery needs</strong></a>.</p><p>");
		Loc2();
		document.write("</p>");
	}
}

function Loc2()
{
	if(cstate=="South Australia") document.write('Please visit us in person, make a phone call, or send us an email, fax or regular mail to the location nearest you: <a href="#hindmarsh">Hindmarsh</a>, <a href="#salisbury">Salisbury</a>, or <a href="#adelaide">Adelaide city</a>.');
	else document.write('Call us at <span class="emph">1300-ABBOTT (1300-222-688)</span>');
}

