﻿function getId(id, useControlPrefix)
{
    if((useControlPrefix == undefined) || (useControlPrefix == true))
        id = controlIdPrefix + id;
 
    return document.getElementById(id);
}

function getNames(name)
{
    return document.getElementsByName(name);
}

function doAdminLogin()
{
    Page_Validators = new Array();
    document.forms[0].action = 'http://www.stratosfour.com/admin/auth.cfm';
    document.forms[0].submit();
}

function validateEmail(email)
{
	if(email == "")
		alert("Please enter your email address.");
	else if(email.match(/^[\w\.\-]*\@{1}[\w\-]*\.{1}[a-zA-Z]*$/) == email)
		return true;
	else
		alert("The email address entered is invalid.");
		
	return false;
}

function showEmail(name, text, bold)
{
    var boldOpen = (bold == undefined) || (bold == false) ? "" : "<b>";
    var boldClose = boldOpen == "" ? "" : "</b>";
    text = (text == undefined) || (text == "") ? name + "@stratosfour.com" : text;
    
    document.write("<a href=\"mailto:" + name + "@stratosfour.com\" class=\"contentLink\">" + boldOpen + text + boldClose + "</a>");
}