// JavaScript Document


ar=0;
function openmenu(menuid){
	
	ob=document.getElementById(menuid);
	
	if(ob.style["overflow"]=="visible"){
		ob.style["height"]="0px";
		ob.style["overflow"]="hidden";
		ar=1;
	}else{
		ob.style["overflow"]="visible";
		ob.style["height"]="";
		ar=0;
	}
	
	//style["backgroundPosition"]='0px 0px';
}


function popupid(id){

	var ob=document.getElementById(id);
	imn=ob.src;
	oi="width=100,height=100,toolbar=no,scrollbars=no,resizable=no";
	wnd=window.open("","image",oi);
	
	with (wnd.document) {
	   	write("<html>");
   		write("<head>");
        write("<title>&nbsp;<\/title>");
		write("<style type=\"text\/css\"><!--*{margin:0px;} --><\/style>");
		write("<script type=\"text/javascript\">onload=function(){resizeTo(im1.width,im1.height);fsh=im1.height-document.body.clientHeight;fsw=im1.width-document.body.clientWidth;resizeTo(im1.width+fsw,im1.height+fsh);}<\/script>");
        write("<\/head>");
        write("<body>");
		write("<img name=\"im1\"src=\""+imn+"\" onclick=\"window.close()\">");
				
		write("<\/body>");
					
		close();
	}
	wnd.focus();
		

}

