<!--
	 function MouseEffect( event )
	 {	switch( event.type )
	 	{	case "mouseover":
				if( document.all )
				{ 	window.event.srcElement.style.backgroundColor = '#737373';
					window.event.srcElement.style.color = '#000000';
				}else{
					event.currentTarget.style.backgroundColor = '#737373';
					event.currentTarget.style.color = '#FFFFFF';
				}
				break;
			case "mouseout":
				if( document.all )
				{	window.event.srcElement.style.backgroundColor = '#737373';
					window.event.srcElement.style.color = '#FFFFFF';
				}else{
					event.currentTarget.style.BackgroundColor = '#737373';
					event.currentTarget.style.color = '#FFFFFF';
				}		
				break;
			default:break;
		}
	 }

	 function ChangePage( page )
	 {
	 	self.location.href=page;
	 }



function ImgWin( img, w, h )
{  if( !newSubWin || newSubWin.closed )
   {  var sw = screen.width, sh = screen.height;
      var ulx = ((sw-w)/2), uly = ((sh-h)/2);

      var paramz = 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no';
      var newSubWin = window.open( "", "SubWindow", paramz );
   
      newSubWin.blur();
      newSubWin.moveTo( ulx, uly );
      newSubWin.resizeTo( w, h );
      newSubWin.location.replace( "img/" + img );
   }
   newSubWin.focus();
}

/* onClick="ImgWin('jk22.gif',300,398); */



//-->