// JavaScript Document

	var prox;var proy;	function show(id){clearInterval(prox);clearInterval(proy);var o = document.getElementById(id);if(o.style.display=="none"){o.style.display = "block";o.style.width = "1px";o.style.height = "1px"; prox = setInterval(function(){openx(o,125)},10);}else{return true;}	}function openx(o,x){var cx = parseInt(o.style.width);if(cx < x){o.style.width = (cx + Math.ceil((x-cx)/5)) +"px";}else{clearInterval(prox);proy = setInterval(function(){openy(o,80)},100);}}	function openy(o,y){var cy = parseInt(o.style.height);if(cy < y){	o.style.height = (cy + Math.ceil((y-cy)/5)) +"px";}	else{clearInterval(proy);}}

