//*************************************************************
//  Check Contact Form
//*************************************************************
function Check_Form(Form)
{
	//>> Check For Blanks
	if (Form.CI_Name.value == "") 
	{
		document.getElementById("CI-Form-Err").innerHTML = "Please Enter Your Name";
		document.getElementById("CI-Form-Err").style.display = "block";
    	Form.CI_Name.focus();
    	return false;
	}
	
	if (Form.CI_Phone.value == "") 
	{
    	document.getElementById("CI-Form-Err").innerHTML = "Please Enter Your Phone Number";
		document.getElementById("CI-Form-Err").style.display = "block";
    	Form.CI_Phone.focus();
    	return false;
	}

	//>> If No Blanks, Proceed
	document.getElementById("CI-Form-Err").innerHTML = "";
	document.getElementById("CI-Form-Err").style.display = "none";
	return true;
}

//*************************************************************
//  Google Maps Insert
//*************************************************************
function Map_Init()
{
	if (GBrowserIsCompatible()) {
		var Map = new GMap2(document.getElementById("CI-Map"));
		var Coords = new GLatLng(45.691432,-111.046543);
		Map.setCenter(Coords, 12);
		Map.addControl(new GSmallMapControl());
        Map.addControl(new GMapTypeControl());
		Map.setMapType(G_HYBRID_MAP);
		var COffice = new GMarker(Coords);
		Map.addOverlay(COffice);
		var InnerText = "<strong>PreLeads Marketing Services</strong><br />PO Box 11671<br />Bozeman, MT 59719-1671";
		GEvent.addListener(COffice, "click", function() {
          	COffice.openInfoWindowHtml(InnerText);
        });
		COffice.openInfoWindowHtml(InnerText);
	}
}