| 
	
	
		
		
			
			 
				Ошибка в джава приложении...
			 
			
		
		
		
		<script type="text/javascript"> 
<!-- 
  var show_comment_box = function() 
  { 
    if (ge('reportReason').selectedIndex) 
      ge('reportComment').style.display = 'block'; 
    else 
      ge('reportComment').style.display = 'none'; 
  } 
 
 --------> $(document).ready(function(){   <----------- Вот эту ошибку выделяет мозила 
   var loaded = false; 
   var popup = new MessageBox({ 
    title: 'Пожаловаться на приложение', 
    onLoad: function() { 
     loaded = true; 
    }, 
    onLoadError: function(text){ 
     text = text.length ? text : 'Произошла ошибка соединения. Попробуйте отправить запрос снова.'; 
     popup.content(text); 
    } 
   }); 
    
   $('#reportLink').click(function(){ 
     if (!loaded) { 
       popup.loadContent('/reports.php?act=report', {item_type: '4'}); 
     } 
     popup.show(); 
     return false; 
   }); 
		
	
		
		
		
		
		
		
	
		
			
			
	
			
			
			
			
			
			
			
			
			
			
				
			
			
			
		 
		
	
	
	 |