/* alert("JS loaded"); */

function setFocus() {	
	element = document.getElementById("form_forename");
	element.focus();
}

function printPage()
{
	window.print();
}

function closeWindow()
{
	window.close();
}


/* --------- initialise page ----------- */

window.onload = function() {
	
	if(document.getElementById("contactform")) {
		setFocus();
	}	
}
