// JavaScript Document
var c;
var mnSelected = 1;
var bgmn = new Array('','#C0E0FF', '#C1E3A4', '#F2C6D2', '#FFFDB8','#E9D181','#E0D295','#F3BEA7','#E0CDF5');
c=1;
function set_mn(current){
	for(var i = 1; i <= 8; i++){
		if(i == current){
			document.getElementById('box' + i).style.display="block";
			document.getElementById('tlinks' + i).className='tlinks1';
		}else{
			document.getElementById('tlinks' + i).className='tlinks';
			document.getElementById('box' + i).style.display="none";
		}
	}
document.getElementById('mainTbl').style.backgroundColor=bgmn[current];
}
function checkweb(){
	var searchKey=document.searchform.webt.value;
	window.open("http://www.avoo.com/web/index.php?q="+escape(searchKey));
	document.searchform.webt.value="";
}
function checksite(){
	var csite=document.searchform.chsite.value;
	window.open("http://partners.mamma.com/WorldviewerT?query="+csite);
	document.searchform.chsite.value="";
}
function checkimg(){
	var keyword=document.searchform.searchImage.value;
	window.open("http://mamma75.mamma.com/Mamma_pictures?qtype=48&query="+keyword);
	document.searchform.searchImage.value="";
}

function checkstock(){
	var cstock=document.searchform.stock.value;
	window.open("http://www.avoo.com/stock/index.php?q="+escape(cstock));
	document.searchform.stock.value="";
}

function checkanswer(){
	var answer=document.searchform.ans.value;
	window.open("http://www.avoo.com/mamma/answers.php?initiator=11&afid=6050&s="+escape(answer));
	document.searchform.ans.value="";
}

function checknews(){
	var keyword=document.searchform.searchNews.value;
	window.open("http://www.avoo.com/news/index.php?q="+escape(keyword));
	document.searchform.searchNews.value="";
}

function checkBlogs(){
   var blogs=document.searchform.blogs.value;
   window.open("http://www.avoo.com/blogs/index.php?q="+escape(blogs));
   document.searchform.blogs.value="";  
}

function checkMovie(){
	var zip = document.movie.zip.value;
	var city = document.movie.city.value;
	if (zip.length < 1 && city.length < 1) {
		alert("Please enter either zip or city/state");
		document.movie.zip.focus();
		return false;
	}
	var state = document.movie.state.options[document.movie.state.selectedIndex].value;
	window.open("http://www.avoo.com/movies/index.php?city="+escape(city)+
   "&zip="+escape(zip) + "&state=" + state);
	return false;
}


function checkjob(){
	var keyword=document.searchform.keywords.value;
	var location=document.searchform.locations.value;
	window.open("http://www.avoo.com/jobs/index.php?keywords="+escape(keyword)+"&locations="+escape(location));
	document.searchform.keywords.value="keywords";
	document.searchform.locations.value="locations";
}

function checkyellow(){
	var what=document.searchform.what.value;
	var where=document.searchform.where.value;
	window.open("http://www.avoo.com/yellowpages/index.php?what="+escape(what)+"&where="+escape(where));
	document.searchform.what.value="Business Name or Category";
	document.searchform.where.value="Zip Code or City";
}

