Initial commit of YBDB code from July 24, 2014.

This commit is contained in:
Jonathan Rosenbaum
2014-11-04 06:39:31 +00:00
commit 6d2028ae08
117 changed files with 11414 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<!--//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>