var colapse_right = colapse_left = true;
function ShowHide(show)
{
	show = show ? true : false;
	column = 'left';
//	document.getElementById(column + '_column').style.width = (eval("colapse_" + column) ? '650' : '202') + 'px';
	document.getElementById(column + '_column').style.width = (show ? '648' : '202') + 'px';
//	eval("colapse_" + column + " = !colapse_" + column);
	return false;
}

function ShowImage(filename, width, height)
{
	win = window.open('', '', 'width='+width+',height='+height);
	win.document.write('<html><head></head><body style="margin: 0px; padding: 0px;"><img src="/images/uploads/'+filename+'" width="'+width+'" height="'+height+'" alt="" border="0" /></body></html>');
	return false;
}

function MenuShowHide(id, submenu)
{
	var item = document.getElementById(id);
	if(null == item) { return false; }
	var img = document.getElementById('img_' + id);
	if(item.style.display == 'none')
	{
		item.style.display = 'block';
		img.src = true == submenu ? '/images/submenu_item_minus.gif' : '/images/left_menu_mminus.gif';
	}
	else
	{
		item.style.display = 'none';
		img.src = true == submenu ? '/images/submenu_item_plus.gif' : '/images/left_menu_mplus.gif';
	}
//	ShowHide();
	return false;
}
