//==============================================================================
function bcemail(){
//==============================================================================
	document.write("web");
	document.write("master");
	document.write("_03");
	document.write("@");
	document.write("BabyChange");
	document.write(".com");
}
//------------------------------------------------------------------------------

//==============================================================================
function CheckNumeric()
//==============================================================================
{
	// Get ASCII value of key that user pressed
	var key = window.event.keyCode;
	
	// Was key that was pressed a numeric character (0-9)?
	if (( key > 45 && key < 58 ) || key==44 || key==46){
		//alert("NO!!!");
		return; // if so, do nothing
	}else
		window.event.returnValue = null; // otherwise, 
	// discard character
}
//------------------------------------------------------------------------------

//==============================================================================
function CheckPositiveInteger()
//==============================================================================
{
	// Get ASCII value of key that user pressed
	var key = window.event.keyCode;
	
	// Was key that was pressed a numeric character (0-9)?
	if (( key > 47 && key < 58 ) ){
		//alert("NO!!!");
		return; // if so, do nothing
	}else
		window.event.returnValue = null; // otherwise, 
	// discard character
}
//------------------------------------------------------------------------------

var latlonmap;

//==============================================================================
	function InitLatLonFinder()
//==============================================================================
	{
		//alert("InitLatLonFinder");
		if(document.getElementById("latlonloading") != undefined)document.getElementById("latlonloading").style.display="";
		if ( document.getElementById("LatLonFinderMap") != undefined ) {
			latlonmap = new GMap(document.getElementById("LatLonFinderMap"));
			latlonmap.addControl(new GLargeMapControl());
			latlonmap.addControl(new GMapTypeControl());
			latlonmap.centerAndZoom(new GPoint(-3.5414 , 54.3856), 12);
			document.getElementById("LatLonFinderMap").style.display="none";
			//InitLatLonFinder = latlonmap;
		}
		if(document.getElementById("latlonloading") != undefined)document.getElementById("latlonloading").style.display="none";
	}
	
//------------------------------------------------------------------------------
	function LatLonSelect(){
		//alert("LatLonSelect");

		if(document.getElementById("PLat") != undefined)document.getElementById("PLat").value = document.getElementById("finderLat").value;
		if(document.getElementById("PLon") != undefined)document.getElementById("PLon").value = document.getElementById("finderLon").value;
		
		LatLonHide();
	}

//-->

