function doGoogleSearch(){
	var searchValue = document.getElementById("searchGoogle").value;
	
	if(searchValue == "Enjoy Local Search" || searchValue == ""){
		alert('And what is it that you are looking for? Maybe you should type something in the search field?');
	}else{
		var surl = "http://www.google.com/custom?domains=www.moncton.net&q=" + escape(searchValue) + "&sa=Search&sitesearch=www.moncton.net&client=pub-6757112576001541&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BLH%3A49%3BLW%3A159%3BL%3Ahttp%3A%2F%2Fwww.moncton.net%2FcommonGraphics%2FmonctonNewLogo.jpg%3BS%3Ahttp%3A%2F%2Fwww.moncton.net%3BLP%3A1%3BFORID%3A1%3B&hl=en";
		
		window.open(surl,'MonctonSearch','height=600,width=800,toolbar=yes,scrollbars=yes,resizable=yes');

	}
}
function addfav()
{
   if (document.all)
   {
      window.external.AddFavorite(location.href, document.title)
   }
}
function setMonctonHome(){
 document.body.style.behavior='url(#default#homepage)';
 document.body.setHomePage('http://www.moncton.net/forum');
}
var showYouTube = false;
function youTubeMoncton(){
	showYouTube = !showYouTube;
	if(showYouTube){
		document.getElementById("monctonYouTube").style.display = "";
	}else{
		document.getElementById("monctonYouTube").style.display = "none";
	}
}