 function Getstats() {
  window.status=('Attempting to Login to your development site.')
  
  var AccId;
  var iName;
  AccId = document.iAccInput.iAccID.value
  iName = document.iAccInput.iName.value
		 
     if (AccId == "" || iName == "")
	{ 
         alert('\n\nYou must enter ALL Details,\nto View your site.\n');
         window.status=('Missing data or Invalid.  Check Username and Password to ensure they are correct.')
	} 
    else
	{
         
	 var location=("pw" + iName + AccId + ".html");
         this.parent.location.href = location;
window.status=('   Verifying:  ' + iName + '-' + AccId + '  Please wait........');
	}
	}
