	function addItemDetailed( itemId ) {
		var wnd = window.open( "/cart.add?locale=<%=locale%>&itemId=" + itemId,
			"cartAddWnd", 
			"resizable=yes,scrollbars=yes,toolbar=no,location=no,menu=no,width=600,height=450" );
		wnd.focus();
	}
	function addItem( itemId ) {
		var wnd = window.open( "/cart.add?locale=<%=locale%>&itemId=" + itemId +
			"&hideSample&hideComment&hideLinks", "cartAddWnd", 
			"scrollbars=yes,toolbar=no,location=no,menu=no,width=600,height=450" );
		wnd.focus();
	}
//------------------------------------------------------------
//	menu control
//------------------------------------------------------------
var fadeMap = new Array();
function showMenu( id ) {
	var element = document.getElementById( id );
	element.style.visibility = 'visible';
	fadeMap[ id ] = false;
}
function hideMenu( id ) {
	setTimeout( "hideMenuTarget( '" + id + "' )", 500 );
	fadeMap[ id ] = true;
}
function hideMenuTarget( id ) {
	if( fadeMap[ id ] == true ) {
		var element = document.getElementById( id );
		element.style.visibility = 'hidden';
	}
}
