function outSubMenu(obj,parent,_action) {
	if(obj)
	if(_action=='show'){ 
		document.getElementById('ProductMenu').style.display = 'block';	
		pos = getPosition(document.getElementById(parent));
	    showBlock(document.getElementById(obj),195,pos['y']-139,'show');		
	}else
	if(_action=='hide'){
		document.getElementById(obj).style.display = 'none';
	}
}

function outMenu(obj,_action) {
	if(_action=='show'){ 
		//
		pos = getPosition(obj); 
	    showBlock(document.getElementById('ProductMenu'),pos['x']-1,pos['y']+32,'show');	
	    //прячем select	    
	}
	if(_action=='hide'){
		document.getElementById('ProductMenu').style.display = 'none';
	}
	
}



