if (!Novo)
{
	var Novo = new Object();
}
if (!Novo.g_search)
{
	Novo.g_search = new GoogleSearch(Novo);
}

// Search Google for www.novoartists.com text
function GoogleSearch( Novo_obj )
{
	this.Novo = Novo_obj;
	this.site = "www.novoartists.com";
	return this;
}

GoogleSearch.prototype.submit = function(form)
{
	form.q.value = "site:" + this.site + " " + form.google_search_text.value;
};

