function popup(loc)
   {
    HTML="<html><head><meta http-equiv=\"imagetoolbar\" content=\"no\"><style>body{margin:0px 0px 0px 0px}</style></head><body onBlur='top.close()'><img src='"+loc+"' border=0  name=li  onLoad='window.resizeTo(document.li.width+10,document.li.height+70)'></body></html>";
    if(window.screen) var myleft=(screen.width-600)/2,mytop=(screen.height-600)/2;
    popupImage=window.open('about:blank','_blank','toolbar=no,scrollbars=no,width=300,height=300,left='+myleft+',top='+mytop);
    popupImage.document.open();
    popupImage.document.write(HTML);
    popupImage.document.close();
   }
   
   
   function over(el) {
		//temp_bgcolor = el.style.backgroundColor;
		//temp_bordercolor = el.style.borderColor
		el.style.border = 1;
		el.style.borderColor  = "#FF0000";
	}

	function out(el) {
		el.style.backgroundColor = temp_bgcolor;
		el.style.borderColor = temp_bordercolor;
	}  
