Visitor Monitor
Written by admin on December 26, 2008 – 7:33 am -You will receive an e-mail from each visitor without them sending it. Very sneaky!
Author: Unknown
<!-- FOUR STEPS TO INSTALL VISITOR MONITOR:
1. Put the first code into the HEAD of your HTML document
2. Add the onLoad event handler to the BODY tag
3. Paste the last code into the BODY of your HTML document
4. Change the 'dummy' e-mail address to your instead. -->
<!-- STEP ONE: paste this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var startTime = new Date();
startTime = startTime.getTime();
var submissions = 0;
function checkForDuplicate() {
if (document.form1) {
document.form1.REFERRER.value = document.referrer;
document.form1.PLATFORM.value = navigator.appName
+ " " + navigator.appVersion;
submissions++;
if (submissions > 1)
return false;
else
return true;
}
else {
return false;
}
}
function doneLoading() {
var stopTime = new Date();
stopTime = stopTime.getTime();
document.form1.LOADING_TIME.value = ((stopTime - startTime) / 1000)
+ " seconds";
document.form1.PAGE.value = document.title;
document.form1.SUBMITTER.click();
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Add the onLoad event handler to your BODY tag -->
<BODY onLoad="doneLoading()">
<!-- STEP THREE: Paste this code into the BODY of your HTML document -->
<FORM name="form1" METHOD=post action="mailto:antispammer@earthling.net?SUBJECT=Devious Visitor Monitor" enctype="text/plain" onSubmit="return checkForDuplicate()">
<input type="hidden" name="PAGE" value="none">
<input type="hidden" name="REFERRER" value="none">
<input type="hidden" name="PLATFORM" value="none">
<input type="hidden" name="LOADING_TIME" value="none">
<input type="submit" name="SUBMITTER" value="Click me to let me know you were here">
</form>
<!-- STEP FOUR: Change the 'dummy' e-mail address to yours. =-) -->
<!-- Script Size: 2.16 KB -->
Tags: User Details
Posted in User Details |