// JavaScript Document

//	Stop spam and send an email
var command = "&#109;&#97;&#105;&#108;&#116;&#111;&#58;"
var host = "&#102;&#114;&#97;&#103;&#105;&#108;&#101;&#119;&#111;&#114;&#108;&#100;"
var extension = "&#111;&#114;&#103;&#46;&#110;&#122;"
function email(user,domain) {
	locationstring = "mailto:" + user + "@" + domain + "?subject=" + subject;
	window.location = locationstring;
}

function popupwindow(mypage, myname, w, h, scroll)
{
	day = new Date();
	id = day.getTime();
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=1,resizable,location=1, menubar=1'
	mywindow = window.open(mypage, myname, winprops)
	isOpened = true;
	if (parseInt(navigator.appVersion) >= 4) { mywindow.window.focus(); }
}

function panelAction(which, action){
	if (action == "close"){
		document.getElementById(which + "Off").className="displayOff";
		document.getElementById(which + "On").className="displayOn";
	} else {
		document.getElementById(which + "Off").className="displayOn";
		document.getElementById(which + "On").className="displayOff";
	}
}