function MM_openBrWindow(theURL,winName,features)
	{
	window.open(theURL,winName,features);
	}

function sw(theURL,winName,features)
	{
	window.open(theURL,winName,features);
	}

function check()
	{
	if (list.email.value == "")
		{
		alert("Please Enter A Valid Email Address!");
		list.email.focus();
		return false;
		}
	}

function nw (link)
	{
	window.open(link.href);
	return false;
	}


