function setCookie (name, value, lifespan, access_path) {
	var cookietext = name + "=" + escape(value) 
	if (lifespan != null) { 
	  var today=new Date() 
	  var expiredate = new Date() 
	  expiredate.setTime(today.getTime() + 1000*60*60*24*lifespan)
	  cookietext += "; expires=" + expiredate.toGMTString()
	}
	if (access_path != null) { 
	  cookietext += "; PATH="+access_path 
	}
	document.cookie = cookietext 
	return null 
}


function setDatedCookie(name, value, expire, access_path) {
	var cookietext = name + "=" + escape(value) 
	   + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))
	if (access_path != null) { 
	  cookietext += "; PATH="+access_path 
	}
	document.cookie = cookietext 
	return null 
}



function gclidfooter() { 
	
	pos = document.cookie.indexOf('dilcg');


	if ((pos>=0) || (window.location.href.indexOf('dilcg=')>0)) {
		document.write('1300 822 383 - City/Broadway Studio<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;1300 822 383 - St George/Hurstville Studio');


	} else { 
		document.write('-02-9566 4900 - City/Broadway Studio<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;-02-9570 7891 - St George/Hurstville Studio');
	}

} 
function gclidbroadway() { 

	pos = document.cookie.indexOf('dilcg');
	if ((pos>=0) || (window.location.href.indexOf('dilcg=')>0)) {
		document.write('1300 822 383');


	} else { 
		document.write('-02-9566 4900');



	}

} 
function gclidhurstville() { 
	pos = document.cookie.indexOf('dilcg');

	if ((pos>=0) || (window.location.href.indexOf('dilcg=')>0)) {


		document.write('1300 822 383');
	} else { 
		document.write('-02-9570 7891');
	}
} 


if (window.location.href.indexOf('gclid=')>0) {
	setCookie('dilcg','dilcg',7);
	document.title = document.title + '-s';
}
