function clear_textbox() {	if (document.mailing_list.email.value == "enter your email address...") document.mailing_list.email.value = "";}
function mailMe(sDom, sUser){return("mail"+"to:"+sUser+"@"+sDom.replace(/%23/g,"."));}

function newWindow(url,theWidth,theHeight) {
	var theTop=(screen.height/2)-(theHeight/2);
	var theLeft=(screen.width/2)-(theWidth/2);
	var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbar=yes";
	theWin=window.open(url,'Popup',features);
	}