$(function() {
  
	$('#showLoginForm').click(function(e) {
    	e.preventDefault();    	    	
    	$.nyroModalManual({
      		url: 'http://traduirerss.com/index.php?action=LoginForm',
      		width: 200, // default Width If null, will be calculate automatically
 			height: 150 // default Height If null, will be calculate automatically
    	});
		
   		 return false;
  	});  
  	
  	$('#showLoginForm1').click(function(e) {
    	e.preventDefault();    	    	
    	$.nyroModalManual({
      		url: 'http://traduirerss.com/index.php?action=LoginForm',
      		width: 200, // default Width If null, will be calculate automatically
 			height: 150 // default Height If null, will be calculate automatically
    	});
		
   		 return false;
  	});  
  	
  	
  	$('#addNewFeed').click(function(e) {
    	e.preventDefault(); 
    	var url = $("#addFeedForm :text").val();
    	$.nyroModalManual({
      		url: 'http://traduirerss.com/actions/AddFeed.php?url='+url,
      		width: 200, // default Width If null, will be calculate automatically
 			height: 100 // default Height If null, will be calculate automatically
    	});
		
   		 return false;
  	});  
  
  
});
