if (!SI) { var SI = new Object(); };
SI.Request = 
{
	get		: function(url) // [target[,callback[,args]]]
	{
		this._request('GET',arguments);
	},
	
	post	: function(url)  //  [target[,callback[,args]]]
	{
		this._request('POST',arguments);
	},
		
	_request	: function(type,args)
	{
		
		/*VOTE COMMENT*/
		if(args[0]=='good_online' || args[0]=='bad_online')
		{
			document.getElementById('online_vote_instant_' + args[1]).innerHTML = 'загрузка..';
		}
		if(args[0]=='good_download' || args[0]=='bad_download')
		{
			document.getElementById('download_vote_instant_' + args[1]).innerHTML = 'загрузка..';
		}
		if(args[0]=='good_torrent' || args[0]=='bad_torrent')
		{
			document.getElementById('torrent_vote_instant_' + args[1]).innerHTML = 'загрузка..';
		}
			

		if (args[0]=='good_online' || args[0]=='bad_online' || args[0]=='good_download' || args[0]=='bad_download' || args[0]=='good_torrent' || args[0]=='bad_torrent')
		{	
			var envelope = 
			{
				request	: false,
				ram		: {}
			};
		
			/*@cc_on @*/
			/*@if (@_jscript_version >= 5)
			try { envelope.request = new ActiveXObject("Msxml2.XMLHTTP"); } 
			catch (e) {
				try { envelope.request = new ActiveXObject("Microsoft.XMLHTTP"); }
				catch (E) { envelope.request = false; };
				};
			@end @*/		
			if (!envelope.request && typeof XMLHttpRequest!='undefined')
			{
				envelope.request = new XMLHttpRequest();
			};
			
			if (!envelope.request)
			{
				return;
			};
			
			var url = args[0] + ((args[0].indexOf('?')!=-1)?'&':'?')+(new Date()).getTime();
			var query = null;
			
										
			if(args[0]=='good_online')
			{
				url = '/instant_vote_online.php';
				query = 'id_online=' + args[1] + '&score=1';
			}
			if(args[0]=='bad_online')
			{
				url = '/instant_vote_online.php';
				query = 'id_online=' + args[1] + '&score=-1';
			}	
			if(args[0]=='good_download')
			{
				url = '/instant_vote_download.php';
				query = 'id_download=' + args[1] + '&score=1';
			}
			if(args[0]=='bad_download')
			{
				url = '/instant_vote_download.php';
				query = 'id_download=' + args[1] + '&score=-1';
			}
			if(args[0]=='good_torrent')
			{
				url = '/instant_vote_torrent.php';
				query = 'id_torrent=' + args[1] + '&score=1';
			}
			if(args[0]=='bad_torrent')
			{
				url = '/instant_vote_torrent.php';
				query = 'id_torrent=' + args[1] + '&score=-1';
			}
				

				envelope.ram.target = url;
				
					envelope.request.open("GET",url+"?"+query,true);
					envelope.request.send(query);
				
		
			if (envelope.ram.target || envelope.ram.callback)
			{
				envelope.request.onreadystatechange = function()
				{
					if (envelope.request.readyState==4 && envelope.request.status==200)
					{
						if (envelope.ram.target)
						{
							var target = envelope.ram.target;
							var content = envelope.request.responseText;
							if (SI.IE && (target.nodeName == 'TBODY' || target.nodeName == 'TABLE'))
							{
								SI.IE.fixInnerHTML(target, content);
							}
							else
							{
								if(args[0]=='good_online')
								{
									var comment_score = args[2];
									comment_score++;
									var result_score = comment_score;
									
									if(comment_score>0) result_score = "<font color='#70bc6e'>" + '+' + comment_score + "</font>";
									if(comment_score<0) result_score = "<font color='#e45757'>" + comment_score + "</font>";									
																		
									document.getElementById('online_score_' + args[1]).innerHTML = result_score;
									document.getElementById('online_vote_instant_' + args[1]).innerHTML = '';																		
								}
								if(args[0]=='bad_online')
								{
									var comment_score = args[2];
									comment_score--;
									var result_score = comment_score;									

									if(comment_score>0) result_score = "<font color='#70bc6e'>" + '+' + comment_score + "</font>";
									if(comment_score<0) result_score = "<font color='#e45757'>" + comment_score + "</font>";
									
									document.getElementById('online_score_' + args[1]).innerHTML = result_score;
									document.getElementById('online_vote_instant_' + args[1]).innerHTML = '';																		
								}	
								
								if(args[0]=='good_download')
								{
									var comment_score = args[2];
									comment_score++;
									var result_score = comment_score;
									
									if(comment_score>0) result_score = "<font color='#70bc6e'>" + '+' + comment_score + "</font>";
									if(comment_score<0) result_score = "<font color='#e45757'>" + comment_score + "</font>";									
																		
									document.getElementById('download_score_' + args[1]).innerHTML = result_score;
									document.getElementById('download_vote_instant_' + args[1]).innerHTML = '';																		
								}
								if(args[0]=='bad_download')
								{
									var comment_score = args[2];
									comment_score--;
									var result_score = comment_score;									

									if(comment_score>0) result_score = "<font color='#70bc6e'>" + '+' + comment_score + "</font>";
									if(comment_score<0) result_score = "<font color='#e45757'>" + comment_score + "</font>";
									
									document.getElementById('download_score_' + args[1]).innerHTML = result_score;
									document.getElementById('download_vote_instant_' + args[1]).innerHTML = '';																		
								}
								
								if(args[0]=='good_torrent')
								{
									var comment_score = args[2];
									comment_score++;
									var result_score = comment_score;
									
									if(comment_score>0) result_score = "<font color='#70bc6e'>" + '+' + comment_score + "</font>";
									if(comment_score<0) result_score = "<font color='#e45757'>" + comment_score + "</font>";									
																		
									document.getElementById('torrent_score_' + args[1]).innerHTML = result_score;
									document.getElementById('torrent_vote_instant_' + args[1]).innerHTML = '';																		
								}
								if(args[0]=='bad_torrent')
								{
									var comment_score = args[2];
									comment_score--;
									var result_score = comment_score;									

									if(comment_score>0) result_score = "<font color='#70bc6e'>" + '+' + comment_score + "</font>";
									if(comment_score<0) result_score = "<font color='#e45757'>" + comment_score + "</font>";
									
									document.getElementById('torrent_score_' + args[1]).innerHTML = result_score;
									document.getElementById('torrent_vote_instant_' + args[1]).innerHTML = '';																		
								}
								
							}
						};
						if (envelope.ram.callback)
						{
							if (envelope.ram.args)
							{
								envelope.ram.callback(envelope.ram.args);
							}
							else
							{
								envelope.ram.callback();
							};
						};
					};
				};
			};
		}
	}
};



// @name      The Fade Anything Technique
// @namespace http://www.axentric.com/aside/fat/
// @version   1.0-RC1
// @author    Adam Michela

var Fat = {
	make_hex : function (r,g,b) 
	{
		r = r.toString(16); if (r.length == 1) r = '0' + r;
		g = g.toString(16); if (g.length == 1) g = '0' + g;
		b = b.toString(16); if (b.length == 1) b = '0' + b;
		return "#" + r + g + b;
	},
	fade_all : function ()
	{
		var a = document.getElementsByTagName("*");
		for (var i = 0; i < a.length; i++) 
		{
			var o = a[i];
			var r = /fade-?(\w{3,6})?/.exec(o.className);
			if (r)
			{
				if (!r[1]) r[1] = "";
				if (o.id) Fat.fade_element(o.id,null,null,"#"+r[1]);
			}
		}
	},
	fade_element : function (id, fps, duration, from, to) 
	{
		if (!fps) fps = 30;
		if (!duration) duration = 3000;
		if (!from || from=="#") from = "#FFFF33";
		if (!to) to = this.get_bgcolor(id);
		
		var frames = Math.round(fps * (duration / 1000));
		var interval = duration / frames;
		var delay = interval;
		var frame = 0;
		
		if (from.length < 7) from += from.substr(1,3);
		if (to.length < 7) to += to.substr(1,3);
		
		var rf = parseInt(from.substr(1,2),16);
		var gf = parseInt(from.substr(3,2),16);
		var bf = parseInt(from.substr(5,2),16);
		var rt = parseInt(to.substr(1,2),16);
		var gt = parseInt(to.substr(3,2),16);
		var bt = parseInt(to.substr(5,2),16);
		
		var r,g,b,h;
		while (frame < frames)
		{
			r = Math.floor(rf * ((frames-frame)/frames) + rt * (frame/frames));
			g = Math.floor(gf * ((frames-frame)/frames) + gt * (frame/frames));
			b = Math.floor(bf * ((frames-frame)/frames) + bt * (frame/frames));
			h = this.make_hex(r,g,b);
		
			setTimeout("Fat.set_bgcolor('"+id+"','"+h+"')", delay);

			frame++;
			delay = interval * frame; 
		}
		setTimeout("Fat.set_bgcolor('"+id+"','"+to+"')", delay);
	},
	set_bgcolor : function (id, c)
	{
		var o = document.getElementById(id);
		o.style.backgroundColor = c;
	},
	get_bgcolor : function (id)
	{
		var o = document.getElementById(id);
		while(o)
		{
			var c;
			if (window.getComputedStyle) c = window.getComputedStyle(o,null).getPropertyValue("background-color");
			if (o.currentStyle) c = o.currentStyle.backgroundColor;
			if ((c != "" && c != "transparent") || o.tagName == "BODY") { break; }
			o = o.parentNode;
		}
		if (c == undefined || c == "" || c == "transparent") c = "#FFFFFF";
		var rgb = c.match(/rgb\s*\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)/);
		if (rgb) c = this.make_hex(parseInt(rgb[1]),parseInt(rgb[2]),parseInt(rgb[3]));
		return c;
	}
}
