// Six Moon Specific Functions
function PhotoWindow(winSource, winName) {
  instant = window.open(winSource,winName,"width=480,height=375,resizable=no,scrollbars=no")
}

function ContactWindow(winSource, winName) {
  instant = window.open(winSource,winName,"width=500,height=375,resizable=no,scrollbars=no")
}

function makeCool() {
	src = event.toElement;
	if (src.tagName == "A") {
		src.oldcol = src.style.color;
		src.style.color = "#883527";
	}
}

function makeNormal() {
	src=event.fromElement;
	if (src.tagName == "A") {
		src.style.color = src.oldcol;
	}
}
	
function Hilite(ta)
{
	ta.style.background  = "#ffffff";
	ta.style.color = "#000000";
}
function Reset(ta)
{
	ta.style.color = "#ffffff";
	ta.style.background  = "#000000";
}

// End Six moon Function.
