<!--

function listbuilder(email){
  if (document.newsletter.email.value.indexOf("@")==-1 ||
    document.newsletter.email.value.indexOf(".")==-1 ||
    document.newsletter.email.value.indexOf(" ")!=-1 ||
    document.newsletter.email.value.length<6)
    {alert("Please enter a valid E-Mail address!")}
   else
    {url = 'http://streaming.xpedite.com.au/452818/lb_OWH/lb.asp?email=' +
email;
    listb=window.open(url,'listb','width=700,height=550,scrollbars=yes');}
  return false;
}

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
    	
function show(layerName) {
    if (document.getElementById) // Netscape 6 and IE 5+
    {
        var targetElement = document.getElementById(layerName);
        targetElement.style.display = 'block';
    }
}

function hide(layerName) {
    if (document.getElementById) 
    {
        var targetElement = document.getElementById(layerName);
        targetElement.style.display = 'none';
    }
}

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

function Form1_Validator(theForm)
{

var alertsay = "";

if (theForm.phone.value.length < 2)
{
alert("Please enter a phone number in the appropriate field.");
theForm.phone.focus();
return (false);
}

// require at least 5 characters in the password field
if (theForm.email.value.length < 3)
{
alert("Please enter at least 3 characters in the \"Email\" field.");
theForm.email.focus();
return (false);
}

// check if both password fields are the same
if (theForm.email.value != theForm.email2.value)
{
	alert("The two email addresses are not the same.");
	theForm.email2.focus();
	return (false);
}
//alertsay = "The form will now be sent."
//alert(alertsay);
return (true);
// replace the above with return(true); if you have a valid form to submit to
}

// -->
