﻿var Extranet = {

	CurrentTypeName:"",
	
	Init:function(){		
//		if ($("DdlYears"))$("DdlYears").addEvent("change",function(e){
//			self.location = location.pathname + "?type="+Extranet.CurrentTypeName+"&year=" + $("DdlYears").value; 
//		});
//		
//		if($("DdlTags"))$("DdlTags").addEvent("change",function(e){
//			self.location = location.pathname + "?type="+Extranet.CurrentTypeName+"&subject=" + $("DdlTags").value; 
//		});
		
	},
	
	SelectYear:function(type,year){
		self.location = location.pathname + "?type="+type+"&year="+year.value;
	},
	
	SelectTag:function(type,tag){
		self.location = location.pathname + "?type="+type+"&subject="+tag.value;
	}
};

$DL(Extranet.Init);