function TestEmail(ADDY) { 
	// Script taken from Yehuda Shiran, Ph.D. - He's the man.
	// http://www.webreference.com/js/tips/000310.html
	var reg1 = /(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)/;
	var reg2 = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$/;
	if (!reg1.test(ADDY) && reg2.test(ADDY)) { return true;
	} else { return false; }
}

function imgswap(id,state) { document.images[id].src = eval( "AllImages."+state+id+".src"); }

function point(instance,state) {
	if (state) { document.images["pointer"+instance].src = "/images/navigation/pointer.gif";
	} else { document.images["pointer"+instance].src = "/images/spacer.gif"; }
}

function PopUp(URL,HT,WD) { 
	if (!(HT)) { HT = "400"; }
	if (!(WD)) { WD = "400"; }
	default_window = window.open(URL,"PopUp","location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,hotkey=0,width="+WD+",height="+HT+"");
}

function EmailFriend(URL,TITLE) { 
	default_window = window.open("/emailfriend.asp?URL="+URL+"&TITL="+escape(TITLE),"PopUp","left=100,top=30,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,hotkey=0,width=450,height=400");
}

AllImages = new Object();
AllImages.offaboutus = new Image();
AllImages.offaboutus.src = "/images/navigation/offaboutus.gif";
AllImages.onaboutus = new Image();
AllImages.onaboutus.src = "/images/navigation/onaboutus.gif";

AllImages.offeducation = new Image();
AllImages.offeducation.src = "/images/navigation/offeducation.gif";
AllImages.oneducation = new Image();
AllImages.oneducation.src = "/images/navigation/oneducation.gif";

AllImages.offerotica = new Image();
AllImages.offerotica.src = "/images/navigation/offerotica.gif";
AllImages.onerotica = new Image();
AllImages.onerotica.src = "/images/navigation/onerotica.gif";

AllImages.offfeatures = new Image();
AllImages.offfeatures.src = "/images/navigation/offfeatures.gif";
AllImages.onfeatures = new Image();
AllImages.onfeatures.src = "/images/navigation/onfeatures.gif";

AllImages.offpostcards = new Image();
AllImages.offpostcards.src = "/images/navigation/offpostcards.gif";
AllImages.onpostcards = new Image();
AllImages.onpostcards.src = "/images/navigation/onpostcards.gif";

AllImages.offshopping = new Image();
AllImages.offshopping.src = "/images/navigation/offshopping.gif";
AllImages.onshopping = new Image();
AllImages.onshopping.src = "/images/navigation/onshopping.gif";

AllImages.spacer = new Image();
AllImages.spacer.src = "/images/spacer.gif";
AllImages.pointer = new Image();
AllImages.pointer.src = "/images/navigation/pointer.gif";
  