// JavaScript Document
/*²γΟΤΚΎ*/
function ss(id){
		document.getElementById("c_"+id).style.display="";
	}
function dd(id){
		document.getElementById("c_"+id).style.display="none";
	}
function initimg(parpic,maxwidth,maxheight)
                          {
                               var scale=maxwidth/maxheight;
                               var realscale=parpic.width/parpic.height;
                               if((parpic.width>maxwidth)||(parpic.height>maxheight))
                                              {
                                                 if(realscale>scale)
                                                           {
                                                              parpic.width=maxwidth;
                                                            }
                                                 else
                                                           {
                                                             parpic.height=maxheight;
                                                           }
                                               }
                         } 

function Picture(o)
{
	var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
	return false;  
}
