// FORM CODE
function validEmail(email) {
			invalidChars = " /:,;";	
			if (email == "") {						// cannot be empty
				return false;
			}
			for (i=0; i<invalidChars.length; i++) {	// does it contain any invalid characters?
				badChar = invalidChars.charAt(i);
				if (email.indexOf(badChar,0) > -1) {
					return false;
				}
			}
			atPos = email.indexOf("@",1);			// there must be one "@" symbol
			if (atPos == -1) {
				return false;
			}
			if (email.indexOf("@",atPos+1) != -1) {	// and only one "@" symbol
				return false;
			}
			periodPos = email.indexOf(".",atPos);
			if (periodPos == -1) {					// and at least one "." after the "@"
				return false;

			}
			if (periodPos+3 > email.length)	{		// must be at least 2 characters after the "."
				return false;
			}
			return true;
}





function CheckIt(Form) {

			// make sure they enter a name

			thename = Form.sender.value;
			namelen=thename.length;
			if (namelen == 0) {
				alert("You must enter a Name");
				Form.sender.focus();
				Form.sender.select();
				return false;
			}

	
			// check to see if the email's valid

			if (!validEmail(Form.email.value)) {
				alert("Invalid email address");
				Form.email.focus();
				Form.email.select();
				return false;
			}
	

			
		
// make sure they enter a phone number

//			phone = Form.PhoneNum.value;
//			Plen=phone.length;
//			if (Plen == 0) {
//				alert("You must enter a Phone Number");
//				Form.PhoneNum.focus();
//				Form.PhoneNum.select();
//				return false;
//			}	
	
	
			// If we made it to here, everything's valid, so return true

			return true;
}


//////////////////////////////////////////////////////////////////////////
//POP UP CODE
/////////////////////////////////////////////////////////////////////

function viewMap(area,url)
{ 
 var str = "http://www.homehuntersrelocations.com/" + url;
 return GB_show(area, str ,600, 600);
}

function closer()
{
window.close();
}


function newWindowBayside()
{
//	closerDown();
	var interfaceWindow = window.open('FindAreaInfoMel.asp?Area=Bayside', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.focus();
}

function newWindowBA()
{
	var interfaceWindow = window.open('baletter.html', 'info', 'width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
}


/////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////



var menu1=new Array()
menu1[0]='<a href="executive.html">Complete Executive</a>'
menu1[1]='<a href="homepurchase.html">Home Purchase</a>'
menu1[2]='<a href="departureservice.html">Departure Program</a>'
menu1[3]='<a href="assist.html">Disability Assistance</a>'

//menu1[4]='<a href="prearrival.html">Pre-Arrival</a>'
//menu1[5]='<a href="arrival.html">Arrival & Orientation</a>'

var menu2=new Array()
menu2[0]='<a href="migration.html">Solicitor & Migration</a>'
menu2[1]='<a href="moving.html">Moving Assistance</a>'
menu2[2]='<a href="education.html">Education</a>'
menu2[3]='<a href="accountant.html">Accountant</a>'
menu2[4]='<a href="otherservices.html">Service Directory</a>'


var menu3=new Array()
menu3[0]='<a href="international.html">International</a>'
menu3[1]='<a href="australia.html">Australia Wide</a>'
menu3[2]='<a href="sydney.html">Sydney</a>'
//menu3[3]='<a href="adelaide.html">Adelaide</a>'

var menu4=new Array()
menu4[0]='<a href="generalquery.html">General Enquiry</a>'
menu4[1]='<a href="questionnaire.html">Questionnaire</a>'

var menu5=new Array()
menu5[0]='<a href="whyuserelocationagent.html">Why use a relocation agent?</a>'
menu5[1]='<a href="whychooseus.html">Why choose us?</a>'
menu5[2]='<a href="howwecanhelp.html">How can we help?</a>'
		
var menuwidth='120px' //default menu width
var menubgcolor='lightyellow'  //menu bgcolor now run on css (style1)
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="no" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu


//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
// For map
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%





////////////////////////////////////////////////////////////////////////////////////////////////////////
// SYDNEY EASTERN
////////////////////////////////////////////////////////////////////////////////////////////////////////

function newWindowCoogee()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Coogee', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowRandwick()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Randwick', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowRoseBay()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Rose Bay', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowVaucluse()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Vaucluse', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowDoubleBay()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Double Bay', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowPottsPoint()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Potts Point', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowElizabethBay()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Elizabeth Bay', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowWoolloomooloo()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Woolloomooloo', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowKingsCross()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Kings Cross', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowDarlinghurst()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Darlinghurst', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowPaddington()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Paddington', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowRedfern()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Redfern', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowClovelly()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Clovelly', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowBondiJunction()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Bondi Junction', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowWoollahra()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Woollahra', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowEdgecliff()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Edgecliff', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowBondi()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Bondi', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowBondiBeach()
{
var	interfaceWindow = window.open('FindAreaInfoSydEast.asp?Area=Bondi Beach', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////
// SYDNEY WESTERN
////////////////////////////////////////////////////////////////////////////////////////////////////////

function newWindowAshfield()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Ashfield', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowCanterbury()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Canterbury', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowSummerHill()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Summer Hill', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowGlebe()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Glebe', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowBalmain()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Balmain', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowLeichhardt()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Leichhardt', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowBurwood()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Burwood', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowPyrmont()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Pyrmont', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowStrathfield()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Strathfield', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowHaberfield()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Haberfield', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowFiveDock()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Five Dock', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowDrummoyne()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Drummoyne', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowHuntersHill()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Hunters Hill', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowGladesville()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Gladesville', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowRyde()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Ryde', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowParramatta()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Parramatta', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowFlemington()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Flemington', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowCanterbury()
{
var	interfaceWindow = window.open('FindAreaInfoSydWest.asp?Area=Canterbury', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////
// SYDNEY NORTHERN
////////////////////////////////////////////////////////////////////////////////////////////////////////

function newWindowGreenwich()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Greenwich', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowMosman()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Mosman', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowMcMahonsPoint()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=McMahons Point', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowMilsonsPoint()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Milsons Point', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowCremornePoint()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Cremorne Point', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowNeutralBay()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Neutral Bay', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowCremorne()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Cremorne', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowCrowsNest()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Crows Nest', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowNaremburn()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Naremburn', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowChatswood()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Chatswood', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}
function newWindowNorthRyde()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=North Ryde', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowEastwood()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Eastwood', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowKillara()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Killara', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowStLeonards()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=St Leonards', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowLaneCove()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Lane Cove', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowArtarmon()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Artarmon', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowFairlight()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Fairlight', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowManly()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Manly', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowBalgowlah()
{
//var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Balgowlah', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
viewMap("Balgowlah","FindAreaInfoSydNorth.asp?Area=Balgowlah");
//	interfaceWindow.onfocus;
}

function newWindowNorthBalgowlah()
{
//var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=North Balgowlah', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
viewMap("North Balgowlah","FindAreaInfoSydNorth.asp?Area=North Balgowlah");
}

function newWindowManlyVale()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Manly Vale', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowFrenchsForest()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Frenchs Forest', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowStIves()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=St Ives', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowKirribilli()
{
var	interfaceWindow = window.open('FindAreaInfoSydNorth.asp?Area=Kirribilli', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
// SYDNEY SOUTHERN
////////////////////////////////////////////////////////////////////////////////////////////////////////

function newWindowArncliffe()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Arncliffe', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowTempe()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Tempe', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowBrightonLeSands()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Brighton Le Sands', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowMalabar()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Malabar', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowMaroubra()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Maroubra', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowKingsford()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Kingsford', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowNewtown()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Newtown', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowPetersham()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Petersham', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowCamperdown()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Camperdown', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowSurryHills()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Surry Hills', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowChippendale()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Chippendale', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowUltimo()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Ultimo', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowHaymarket()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Haymarket', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowSansSouci()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=Sans Souci', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowLaPerouse()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=La Perouse', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}

function newWindowStPeters()
{
var	interfaceWindow = window.open('FindAreaInfoSydSouth.asp?Area=St Peters', 'info', ' width = 600, height = 500, toolbar = yes, screenX = 400, left = 400, resizable = yes, scrollbars = yes');
//	interfaceWindow.onfocus;
}
