function searchClickedSimple(x)
{
    if ((x=='') || (x=='search site'))
    {
        alert("Please enter a term to search for.");
        return false;
    }
	else
	{
		document.searchForm.submit();
		return true;
	}
}

function swap_bg(objName, newclass)
{
	objName.className = newclass;
}

function init_boxes()
{
	if (document.licensee_login.licensee_username) { if (document.licensee_login.licensee_username.value != '') { objName.className = 'green_textbox'; } }
	if (document.licensee_login.licensee_password) { if (document.licensee_login.licensee_password.value != '') { objName.className = 'green_textbox'; } }
	
	if (document.customer_login.customer_username) { if (document.customer_login.customer_username.value != '') { objName.className = 'blue_textbox'; } }
	if (document.customer_login.customer_password) { if (document.customer_login.customer_password.value != '') { objName.className = 'blue_textbox'; } }
}

function clear_licensee_password()
{
	if(document.getElementById('licensee_password').value == 'Password');
	{
		document.getElementById('licensee_password').className = 'green_textbox';
	}
	
	return true;
}

function open_window(target)
{
	//window.open(target, 'pop', "location=0,status=0,scrollbars=1, width=800,height=600");
	window.open(target, 'pop', "location=0");
}

