var timer = 0;
	lastid = 0;

function show(id) {
	clearTimeout(timer);
	if (id != lastid && lastid) {
		((document.all)?document.all['menu'+lastid]:document.getElementById('menu'+lastid)).style.visibility = 'hidden';
	}
	lastid = id;
	((document.all)?document.all['menu'+lastid]:document.getElementById('menu'+lastid)).style.visibility = 'visible';
}

function hidden(id) {
	timer = setTimeout("if('"+id+"' == '"+lastid+"'){((document.all)?document.all['menu"+lastid+"']:document.getElementById('menu"+lastid+"')).style.visibility = 'hidden';}", 500)
}
function add2basket(itemId) {
	document.all.add2BasketHotprod.ITEM.value = itemId;
	document.all.add2BasketHotprod.submit();
}

function basketUrl(link) {
	document.location.href = link+'&a='+Math.random( ) ;
}

function doEditUserInfo(userId)
{
	openWindow('/itshop/edit_user_info.jsp?USER_ID=' + userId, 500, 500, '1');
}
