


var newWindow
function makeNewWindow() {
	if (!newWindow || newWindow.closed) {
		newWindow = window.open("http://www.sunexchangeproperties.com/LandingPage/privacy/policy.html","","status=no,height=400,width=500,scrollbars=yes,title=no")
		if (!newWindow.opener) {
			newWindow.opener = window
		}
		//window's already open; bring to front
		newWindow.focus()
	}
}

var newWindow2
function makeNewWindow2() {
	if (!newWindow2 || newWindow2.closed) {
		newWindow2 = window.open("http://www.sunexchangeproperties.com/LandingPage/privacy/optout.html","","status=no,height=400,width=500,scrollbars=yes,title=no")
		if (!newWindow2.opener) {
			newWindow2.opener = window
		}
		//window's already open; bring to front
		newWindow2.focus()
	}
}
// validate the forms

var good;

function checkTheForm()
  {

  temp = checkField('fname','Full name required!');
  if (!temp){return false;}
  
  temp = checkField('phone','Phone required!');
  if (!temp){return false;}
  
  temp = checkField('emailAddress','Email address required!');
  if (!temp){return false;}
   
  // comments
  
  } // end func

function checkField(fieldID, errorMessage)
  {
  if (document.getElementById(fieldID).value == '')
    {
    alert(errorMessage);
    document.getElementById(fieldID).focus;
    return false;
    }
  return true;
  } // end func


