// JavaScript Document
function origloc()
{
var origloc = window.location.href;
var expdate = new Date(); 
expdate.setTime (expdate.getTime() + (720 * 60 * 60 * 1000)); // 24 hrs from now 
DeleteCookie("origloc","/");
SetCookie ("origloc", origloc, expdate, "/");
window.location="http://www.acupuncture4themind.com/modules/help/mod_help_intro.php";
}

