﻿// JScript 文件
$(function(){
 $(".validepic").click(function(){
var img=$(this);
var src=img.attr("src");
var newsrc;
if(src.indexOf('?')>-1)
{
newsrc=src.substr(0,src.indexOf('?'))+"?ts="+new Date();
}
else
{
 newsrc=src+"?ts="+new Date();
}

img.attr("src",newsrc);
return false;
});


})
 function logout()
{
if(confirm('确定退出?')){
return true;
}
else{
return false;
}
return false;
}
