		//<!--
		function FncShowPic(pic_url,desc,x_width,y_height){
			!x_width ? x_width = '1' : 1;
			!y_height ? y_height = '1' : 1;
			!desc ? desc = '' : 1;
			str = 'width='+x_width+',height='+y_height+',resizable,scrollbars=no,status';
			x = window.open('showpic.php?url='+pic_url+'&description='+desc+'&x_width='+x_width+'&y_height='+y_height,'picviewer',str);
			x.focus();
		}
		// these functions allow IE to process rollovers on the <li> tags 
		FncMakeLisHover = function( id ) {
			if( document.all && document.getElementById )
			{
				var LIs = navi.getElementsByTagName( "LI" );
				for( var i=0; i<LIs.length; i++ ) 
				{
					addRollover( LIs[i] );
				}
			}
		}
		addRollover = function( node )
		{
				node.onmouseover = function() 
				{
					this.className += " iehover";
				}
				node.onmouseout = function() 
				{
					this.className = this.className.replace( " iehover", "" );
				}
		}
		window.onload=FncMakeLisHover;
		//-->

