<!-- shields up!
last = "awesomelyactive.com"; 
badword = "'mailto:";
function catsearch(catext)
{
var catext;
document.bycatsearch.gmsearch.value = catext;
document.bycatsearch.submit();
return true;
};
function flevPopupLink(pRef,pWinName,pFeatures) { // v1.0, Marja Ribbers-de Vroed, FlevOOware
  window.open(pRef,pWinName,pFeatures);
  document.MM_returnValue = false;
};
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// Copyright (c) 1996-1997 Athenia Associates.
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function setCookie(name, value, expires, path, domain, secure) {
  var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" 
	+ expires.toGMTString() : "") + ((path) ? "; path=" + path : "") 
	+ ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
document.cookie = curCookie;
}
function getCookie(name) {
var prefix = name + "=";
var nullstring = "";
var cookieStartIndex = document.cookie.indexOf(prefix);
if (cookieStartIndex == -1)
return nullstring;
var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex 
	+ prefix.length);
if (cookieEndIndex == -1)
cookieEndIndex = document.cookie.length;
return unescape(document.cookie.substring(cookieStartIndex 
	+ prefix.length, cookieEndIndex));
}
function deleteCookie(name, path, domain) {
if (getCookie(name)) {
document.cookie = name + "=" + ((path) ? "; path=" + path : "") 
	+ ((domain) ? "; domain=" + domain : "") 
	+ "; expires=Thu, 01-Jan-70 00:00:01 GMT"
};
}

function fixDate(date) {
var base = new Date(0);
var skew = base.getTime();
if (skew > 0)
date.setTime(date.getTime() - skew);
}
function setGMcookies() {
if (document.newcomment.bakecookie.checked){
    var now = new Date();
    fixDate(now); 
    now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000); 
    setCookie('gmcmtauth', document.newcomment.newcommentauthor.value,   now, '', 'awesomelyactive.techsyscom.net',''); 
    setCookie('gmcmtmail', document.newcomment.newcommentemail.value ,   now, '', 'awesomelyactive.techsyscom.net',''); 
	setCookie('gmcmthome', document.newcomment.newcommenthomepage.value, now, '', 'awesomelyactive.techsyscom.net',''); 
	}
}	 
function deleteGMcookies() {
    deleteCookie('gmcmtmail','','awesomelyactive.techsyscom.net');
    deleteCookie('gmcmthome','','awesomelyactive.techsyscom.net');
    deleteCookie('gmcmtauth','','awesomelyactive.techsyscom.net');
    document.newcomment.newcommentemail.value =    '';
	document.newcomment.newcommentauthor.value =   '';
	document.newcomment.newcommenthomepage.value = '';	
}	
//-->
function camdte()
{
camdate = new Date();
SideBarDate = getDayString(camdate.getDay()) + ", " + getMonthString(camdate.getMonth()) + " " + camdate.getDate() + ", " + camdate.getFullYear();

document.getElementById("harddate").appendChild(document.createTextNode(SideBarDate));
};
function getDayString(num)
{
var day; //Create a local variable to hold the string.
var dayName = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
day = dayName[num];
return day;
};
function getMonthString(num)
{
var month; //Create a local variable to hold the string.
var monthName = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
month = monthName[num];
return month;
};
// down shields! -->