
		/********************************
		 site-specific functions
		********************************/
		function subscri() {
			showHide('subscribeInner');
			showHide('subArrO');
			showHide('subArrHid');
			showHide('subscribeTop');
		}

		/********************************
		 standard functions
		********************************/

		function showHide(obj,thiss) {
			if(thiss)
				thiss.blur();
			if ( document.getElementById(obj).style.display=='' ) {
				document.getElementById(obj).style.display='none';
			} else {
				document.getElementById(obj).style.display='';
			}
		}
		function pop(thiss,url,width,height,params) {
			if(thiss!='')
				thiss.blur();
			p = params ? params : 'toolbar=no,width='+eval(width+20)+',height='+height+',directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,left=200,top=100,titlebar=no';
			win = window.open(url,'pop'+width+height,p);
			win.focus();
			return false;
			void(0);
		}

	cmo_counter=0;
	i_mover = new Array();
	i_mout  = new Array();
	function createMouseOver(imageObject,moverSrc) {
		if(imageObject.name)
			imageObject.id = imageObject.name
		else if (imageObject.id){
			imageObject.name = imageObject.id;
		}
		imageObject.index = cmo_counter;
		imageObject.selected = false;
		i_mover[cmo_counter]=new Image();i_mover[cmo_counter].src=moverSrc;
		i_mout[cmo_counter]=new Image();i_mout[cmo_counter].src=imageObject.src;
		imageObject.onmouseover=function cmo_over(){this.src=i_mover[this.index].src}
		imageObject.onmouseout=function cmo_out(){if(!this.selected)this.src=i_mout[this.index].src}
		cmo_counter++;
		//alert(cmo_counter)
		//alert(imageObject.index+" "+i_mover[imageObject.index].src+" "+i_mout[imageObject.index].src+" ");
		imageObject.onload="";
	}