// JavaScript Document

function focus_img(d,E,i,a) {
   d=document;E=d.documentElement;b=d.body;if(!E)return;
   for(i=0;a=d.getElementsByTagName("a")[i];i++){
      if(a.rel=='thumb'){
         var img=document.createElement('img');
		 var galBox = document.getElementById("fGalBox");

		a.onmouseover=function(e){
//			a = new Image(); 
//			a.src = this.title; 		
//			if (a.height>a.width) {
				var m_link = this.rev.replace("[s]", "_m");
				var b_link = this.rev.replace("[s]", "_b");				
				galBox.innerHTML = "<a href='"+b_link+"' target='_blank'><img src="+m_link+" alt='' border='0' /></a>";
//			} else if (a.height<a.width) {
//				galBox.innerHTML = "<img src="+this.title+" width='205'>";
//			} else if (a.height==a.width || a.height==0 || a.width==0) { 
//				galBox.innerHTML = "<img src="+this.title+" width='200' height='200'>";					
//			 }
			 
			var galBoxHead = document.getElementById("fGalHeadTitle");
			galBoxHead.innerHTML = this.title;
			 }


		}
	}
}
 