if (document.all&&window.attachEvent) {
	// IE-Win 
	/*window.attachEvent("onload", newWindowLink);*/
	window.attachEvent("onload", formInitialise);
	window.attachEvent("onload", fixFormLabels);
	window.attachEvent("onload", frameEscape);
		
} else if (window.addEventListener) {
	// Gecko, Safari, Konqueror and Standard
	/*window.addEventListener("load", newWindowLink, false);*/
	window.addEventListener("load", formInitialise, false);
	window.addEventListener("load", fixFormLabels, false);
	window.addEventListener("load", frameEscape, false);
		
} else if (document.addEventListener) {
	// Opera 7
	/*document.addEventListener("load", newWindowLink, false);*/
	document.addEventListener("load", formInitialise, false);
	document.addEventListener("load", fixFormLabels, false);
	document.addEventListener("load", frameEscape, false);
	
		
} else {
	// IE-Mac
	if(typeof window.onload == 'function') {
		var existing = onload;
		//IE Mac gets to here, but does not get to the window.onload = function part
		//this is supposedly supposed to be used for ie Mac - NEED TO WORK OUT HOW TO GET IE MAC TO RUN MULTIPLE FUNCTIONS
		window.onload = function() {
			existing();
			/*newWindowLink();*/
			formInitialise();
			fixFormLabels();
			frameEscape();
			
		}
	} else {
		window.onload = function() {
			/*newWindowLink();*/
			formInitialise();
			fixFormLabels();
			frameEscape();
		}
	}
}