//==========================================================
function makePopUp(url, width, height) {
	var tempWnd;
	tempWnd = window.open(url, "wndPopUp", "dependent=yes, width=" + width + ", height=" + height);
	tempWnd.focus();
}

//==========================================================
function framebreakout() {
// If protocol="file:" then this is on my desktop.
// If hostname="www.aus-kayak-fishing.com" then this is inside my own frame.
// If top.location=document.location then this is at an unframed page.
// Otherwise someone else has framed my site and I need to break out of their frame.
	if ((document.location.protocol).toString() != "file:") {
//		if ((top.location.hostname).toString() != "www.aus-kayak-fishing.com") { //
			if (top.location != document.location) {
				top.location.href = document.location.href;
			}
//		} //
	}
}

//==========================================================
