var vLoc=location.href
var vArr=vLoc.split("/")
var vPrefix="/"+vArr[3]

// To make menu links work on CMS    Pages - remove "//" from the beginning of the line below
// To make menu links work on Staged Pages - put    "//" at   the beginning of the line below
// var vPrefix=""

// To hide "Switch to Edit Site" - remove "//" from the beginning of the lines below
// To show "Switch to Edit Site" - put    "//" at   the beginning of the lines below
//var vTo   = document.getElementById("cmsMainTable")
//if (vTo != null) {vTo.style.display = "none"}


function MT(one,two)
	{
		s = "m" + "a" + "i" + "l" + "t" + "o" + ":" + one + "@" + two
		location.href = s
	}

function MT2(one,two,subj,body)
	{	location.href = "mai"+"lto"+":"+one+"@"+two+"?sub"+"ject="+subj+"&bo"+"dy="+body
	}

// development only - show mouse position
//x()
function x () {
//	if (vPrefix == "") {
		if (! document.all) {document.captureEvents(Event.MOUSEMOVE)}
		document.onmousemove = y
//	}
}
function y (evt) {
	if (document.all) {
		window.status="x="+window.event.clientX+",y="+window.event.clientY }
	else {
		window.status="x="+evt.pageX+",y="+evt.pageY }
}
