<!--- No Spam Tag --->

function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}


<!--- Image Fader Tag --->

function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
if (which2.style.MozOpacity)
which2.style.MozOpacity=0.3
else if (which2.filters)
which2.filters.alpha.opacity=30
}

function highlightit(cur2){
if (cur2.style.MozOpacity<1)
cur2.style.MozOpacity=parseFloat(cur2.style.MozOpacity)+0.1
else if (cur2.filters&&cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=10
else if (window.highlighting)
clearInterval(highlighting)
}


<!--- PopUp Tag --->
	 
function openWin(theURL,width,height) {
	var w = 480, h = 340;
	
	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}

	var popW = width, popH = height;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	
	window.open(theURL,'popup','width='+width+',height='+height+',toolbar=no,menubar=no,status=no,scrollbars=no,resize=no,top='+topPos+',left='+leftPos);
}

function openScrollingWin(theURL,width,height) {
	var w = 480, h = 340;
	
	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}

	var popW = width, popH = height;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	
	window.open(theURL,'popup','width='+width+',height='+height+',toolbar=no,menubar=no,status=no,scrollbars=yes,resize=yes,top='+topPos+',left='+leftPos);
}

function openWinS(url, width, height) {
	var w = 480, h = 340;
	
	if (screen != null && screen.availWidth != null) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	
	var popW = width, popH = height;
	var leftPos = (w - popW) / 2, topPos = (h - popH) / 2;
	
	window.open(url,'popup','width='+width+',height='+height+',toolbar=no,menubar=no,status=no,scrollbars=yes,resize=yes,top='+topPos+',left='+leftPos);
}

function jumpMenu(target, selObj, restore)
{
	eval(target+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

