function EnablePNGs() {
	if (BIsIE && BVer>=5.5) {
		for (i=0; i<document.images.length; i++) {
			var img = document.images[i];
			var imgName = img.src.toUpperCase();

			if (imgName.substring(imgName.length-3, imgName.length)=="PNG") {
				var imgID = img.id?"id='"+img.id+"' ":"";
				var imgClass = img.className?"class='"+img.className+"' ":"";
				var imgTitle = img.title?"title='"+img.title+"' ":"title='"+img.alt+"' ";
				var imgStyle = "display:inline-block;"+img.style.cssText;
				
				if (img.align=="left") imgStyle="float:left;"+imgStyle;
				if (img.align=="right") imgStyle="float:right;"+imgStyle;
				if (img.parentElement.href) imgStyle="cursor:hand;"+imgStyle;

				img.outerHTML = "<span "+imgID+imgClass+imgTitle+" style=\"width:"+img.width+"px; height:"+img.height+"px;"+imgStyle+";filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'"+img.src+"\', sizingMethod='scale');\"></span>";
				i--;
			}
		}
	}
}


function UpdateLinkIcons() {
	if (document.getElementsByTagName("A")) {
		for (i=0; i<document.getElementById("DocumentBodyDiv").getElementsByTagName("A").length; i++) {
			with (document.getElementById("DocumentBodyDiv").getElementsByTagName("A")[i]) {
				if (className.indexOf("Text")!=-1 && innerHTML.toLowerCase().indexOf("<img ")==-1) {
					if (href.toLowerCase().indexOf(".pdf")!=-1) insertAdjacentHTML("afterBegin", "<img src=\""+ClientTemplatePath+"linkpdf.gif\" height=16 width=16 border=0 align=absmiddle style=margin-right:2>");
					if (href.toLowerCase().indexOf("mailto:")!=-1) insertAdjacentHTML("afterBegin", "<img src=\""+ClientTemplatePath+"linkmail.gif\" height=16 width=16 border=0 align=absmiddle style=margin-right:2>");
				}
			}
		}
	}

	PageResize();
}



function PageResize() {
	DocumentPosTop = document.getElementById("DocumentTable").offsetTop+5;
	DocumentPosLeft = document.getElementById("DocumentTable").offsetLeft+4;

	with (document.getElementById("NavContainer")) {
		style.top = DocumentPosTop+123;
		style.left = DocumentPosLeft+0;
		style.display = "";
	}

	with (document.getElementById("Monaro")) {
		style.top = DocumentPosTop+2;
		style.left = DocumentPosLeft+681;
		style.display = "";
	}
}


function PageInitialise() {
	if (BannerText.length<1) BannerText=PageName;
	if (BannerImage.length<1) BannerImage="onlinefiles/side_photos/default.jpg";

	EnablePNGs();
	PageResize();
	SetActiveMenuItem();
}


function MakeHover(Obj, InOut) {
	if (InOut==1) Color="#dcdada";
	else Color="#e8e8e8";

	Obj.style.backgroundColor = Color;
}


window.onresize = PageResize;
window.onerror = new Function("return true");
document.onselectstart = new Function("if(window.event.srcElement.tagName!='INPUT'&&window.event.srcElement.tagName!='TEXTAREA')return false");
document.oncontextmenu = new Function("if(window.event.srcElement.tagName!='INPUT'&&window.event.srcElement.tagName!='TEXTAREA')return false");
