﻿function $(i) {
	var r = null;
	if (typeof i != "undefined" && i) r = document.getElementById(i);
	return r;
}
function runSendForm(oFrom, link) {

	if(oSelect=$("something"))
	{
		iSelectedIndex=oSelect.selectedIndex;
		sMonth=oSelect.options[iSelectedIndex].value;
	}
	else
	{
	alert('aaa!!!')
	}
	if(oSelect=$("nothing"))
	{
		iSelectedIndex=oSelect.selectedIndex;
		sYear=oSelect.options[iSelectedIndex].value;
	}
	else
	{
	alert('aaa!!!')
	}
	oFrom.action=link+'archive/?month='+sMonth+'&year='+sYear;
	oFrom.submit();
}
