|
LastVisit Cookie |
<script>
<!--
// document.cookie="name=; expires=01-01-97"
function count()
{
var count = getcount('count')
if (count == null )
{
count = 1
}
else
{ count++ }
document.cookie = "CountNo=" + count
return count
}
function getcount(count)
{
var st = document.cookie.indexOf("CountNo=")
return document.cookie.substring(st+8, st+10)
}
document.write("No. of your visits : " + count() )
// -->
</script>
|
|
|