// JavaScript Document created August 10, 2011 by Jack Grieshaber

function check_browser(){
	var table_id = document.getElementById("sdlogo");
	
   if (navigator.userAgent.toLowerCase().indexOf("firefox") == -1)
   {
	   if (document.title == "San Diego Neighborhoods for Clean Elections - Home"){
	      table_id.width=795;
	   }else{
		   table_id.width=894;
	   }
	   
	   //table_id.width=850;
   }else{
	   table_id.width=896;
   }
   //image_id.src = images/sdlogo100w.gif;
   //image_id.innerHTML = "<img src='images/sdlogo100w.gif' width='120' height='100' />";
   //image_id.style.backgroundImage="images/sdlogo100w.gif"
  // alert("image_id = " + image_id);
  // document.getElementById("logo_image").style.backgroundImage= "url(images/sdlogo100w.gif)";
   //image_id.style.backgroundImage = "url('" + input.value + "')";

   

   //table_id.border=2;
  // table_id.align="center";
  // table_id.border.color="#6699CC";
}
