// script from : http://www.sitepoint.com
function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}

function openWin(theURL,winName,features) {
  window.open(theURL,winName,features);
}

// onloads called for the page
function initscripts() {
	externalLinks();
}

window.onload = initscripts;


function submitIt(theForm) {

		
		var CanSubmit = false;

           // Check to make sure that the fields are not empty.
           //CanSubmit = ForceEntry(document.forms[0].Name,"Name");

			//if (CanSubmit)CanSubmit = (ForceEntry(document.forms[0].Home_Tel,"Home Telephone Number in ###-###-#### format") && ForceTel(document.forms[0].Home_Tel,"Home Telephone Number"));
			//if (CanSubmit)CanSubmit = ForceEntry(document.forms[0].Email,"you Email Address");
			//if (CanSubmit) CanSubmit = ForceChkBox(document.forms[0].Dwelling,"Please select the type of Dwelling that you are interested in!");
			//if (CanSubmit) CanSubmit = ForceChkBox(document.forms[0].Price,"Please select the price range that you are interested in!");
				
			return CanSubmit;
	

}
