function conf (message, url) { 
	if (confirm(message)) { 
		location.href=url;
	}
}
function hellobye(obid) {
	if (document.getElementById(obid).style.display=='none') {
		document.getElementById(obid).style.display='block';
	} else {
		document.getElementById(obid).style.display='none';
	}
}
function mese () {
	var meni = document.getElementById('me').childNodes;
	menis = new Array();
	for (obs in meni) {
		if (meni[obs].id == 'mi') {
			menis.push(meni[obs]);
		}
	}
	topwidth = document.getElementById('me').offsetWidth;
	basewidth = parseInt(topwidth/menis.length);
	for (obs in menis) {
		menis[obs].style.width=basewidth;
	}
}
function confsub()
{
var agree=confirm("fo riz?");
if (agree)
	return true ;
else
	return false ;
}

