dom = (document.getElementById)? true : false;
ie4 = (document.all && !dom)? true : false;

function menuClick(elemId) {
	elemId2 = "img_"+elemId;
	elemId = "m_"+elemId;
	if (dom || ie4) {
    	var currElement = (dom)? document.getElementById(elemId) : document.all[elemId];

       currElement.style.display = (currElement.style.display == 'none')? 'block' : 'none';
        
        return false;
	} else return true;
}

function openpic(img, w, h){
	window.open('/pic/?'+img,'photo'+h+w,'height='+h+',width='+w+',resizable=yes,scrollbars=yes,menubar=no,status=no');
}
function win_open(url, w, h){
	window.open(url,'window'+h+w,'height='+h+',width='+w+',resizable=yes,scrollbars=yes,menubar=no,status=no');
}

function submitForm(formname){
	document.getElementById(formname).submit();
}

function change_calendar(formname){
	var fm = document.getElementById(formname);
	var year = fm.calendaryear.value;
	var month = fm.calendarmonth.value;
	window.location='/news/archive_0-'+month+'-'+year+'.html';
	return false;
}
