
// JavaScript Document
			function ex_crypto(lien){
				$('cryptogramme').src = lien+'?'+Math.random();
			}
			function updateDownloadStat(file){
				
				new Ajax.Request('http://www.exinsidephp.com/pages/download.php',
				{
					method:'get',
					asynchronous:false,
					parameters: 'type=ajax&script='+file,
					onComplete: function(requete){
						if(requete.responseText == 1)
							$('n_download').innerHTML = parseInt($('n_download').innerHTML)+1;
					}
				});
			}
			Event.observe(document,'click',
				function(event){
					new Ajax.Request('http://www.exinsidephp.com/pages/stats.php',
					{
						method:'post',
						asynchronous:true,
						parameters: 'y='+Event.pointerY(event)+'&x='+Event.pointerX(event)
					});
				}
			);
			function pubClose(){
				new Ajax.Request('http://www.exinsidephp.com/pages/pubClose.php',{
					onComplete: function(){
						$('pub').fadeOut({delay:30});
					}
				});
			}
