//MENU HEADER FUNCTIONS 
// FunctionsFormEmail.js

var currLoc = document.referrer

// The following code opens a page in a new window
// First we create a variable that contains the URL for the 
// page we wish to go to and then use the window.open method
// to open a new window with the acknowledgement document.
function tyForm()  {
var valform = "FormAck.html "
myWindow = window.open(valform)
}

// This function takes the client back to the referring page
function getBack() {
	 history.go(-1)
}
