// google frame wrapper
//----check to see if has been loaded without parent. if so, load in original, using split location

if (window.top==window.self) 
	{
		framename=window.top.location.href.split('.com.au/');
		if (framename[1].indexOf('Newsletters/')>-1) {
			window.location='http://www.bristolandbrooks.com.au/?gift-search='+framename[1].replace(/\&/,'');
		} else {
			window.location='http://www.bristolandbrooks.com.au/#'+framename[1];
		}
	}

