Hi guys this is a little strange, could be an easy fix I don't know as i'm new to javascript/programming in general, basically at the moment i've currently got a website that has a simple counter function set to an image as can be seen here:\[code\]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css"></style><title></title><script type="text/javascript">var count = 0;function countClicks() { count = count + 1; document.getElementById("p2").innerHTML = count;}</script></head><body><table border="0"><td><div id="p2" style="padding-left:15px; font-size:30px; font-family:Showcard Gothic">0</div><br/><div><img onclick="javascript:countClicks();" src="http://stackoverflow.com/questions/12764163/C:/Users/DOMINATION/Desktop/button.jpg" alt="alt text" /></div></td></body></html>\[/code\]Basically I want it so that whenever the site is refreshed the counter is the same as when it was set the last time it was changed, e.g if someone goes onto the site and puts the counter up to 4, when another user comes on to the site/the same person refreshes the page the counter will still be at 4. Is this possible?