function changePage(pageRef) {
        this.location.href=pageRef;
        }
function frameUp(url) {
        if (window.top==self && confirm("Would you like to see the framed version of this site?")) {
        this.location="index.htm";
        }
		else {
		parent.changeTop(url);
		}
}
function topChange(url)
{
parent.upper.location=url;
}
function OpenWindow(theURL,winName,features)
{
var myWindow = window.open(theURL,winName,features);
myWindow.location = theURL;
myWindow.focus();
}
function Validate(form)
{
	var msg = "You must enter both name and email values ...";
	var recipient = document.forms[0].recipient.value;
	var email = document.forms[0].email.value;

	
	// check for any space characters that may be input
  	
  	if (recipient == "" || recipient == null || email == "" || email == null)
  	{
  		alert (msg);
  		return false;
  	}
}