function buildEmail(before, after) {
	location.href = 'mailto:' + before + '@' + after;
}

function buildEmailLink(before, after) {
	document.write('<a href="mailto:' + before + '@' + after + '">' + before + '@' + after + '</a>');
}

function sendUrl(strUrl) {
	window.open('sendurl.asp?url=' + strUrl, 'winSendUrl', 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,dependent,width=200,height=250,left=200,top=180');
}

function goToSelectedExternal(objectId) {
	if (objectId.options[objectId.selectedIndex].value != "none") {
		location = objectId.options[objectId.selectedIndex].value;
	}
}

function openWindow(myPage, myWindow, myWidth, myHeight) {
	myWindow = window.open(myPage, myWindow, "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,dependent,width=' + myWidth + ',height=' + myHeight+ ',left=0,top=0");
}

function openWMP(myPage) {
	wmpWindow = window.open(myPage, "wmpWindow", "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,dependent,width=585,height=435,left=0,top=0")
}

function openPersWindow(url) {
	persWindow = window.open(url,'persWindow','width=420,height=250,left=100,top=100,screenX=100,screeny=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}