function checkOnload() {
strPath = window.location.pathname;

if (strPath.indexOf("loc.shtml") > 0) {
processLocRedirect();
};

if (strPath.indexOf("check.shtml") > 0) {
processCheckRedirect();
};

if (strPath.indexOf("contest.shtml") > 0) {
MilkandCookies();
};

if (strPath.indexOf("contestthankyou.shtml") > 0) {
contestThankyou();
};

}
