You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
407 B
17 lines
407 B
<!--//This function redirects the Log to the Welcome Page ================================================ -->
|
|
<script type="text/javascript">
|
|
var t;
|
|
window.onload=resetTimer;
|
|
document.onmousedown=resetTimer;
|
|
document.onkeypress=resetTimer;
|
|
|
|
function logout()
|
|
{
|
|
location.href='shop_welcome.php'
|
|
}
|
|
function resetTimer()
|
|
{
|
|
clearTimeout(t);
|
|
t=setTimeout(logout,1000*5) //logs out in 30 minutes
|
|
}
|
|
</script>
|
|
|